31 lines
1.4 KiB
Markdown
31 lines
1.4 KiB
Markdown
|
Keywords List
|
||
|
=============
|
||
|
|
||
|
{{#include ../links.md}}
|
||
|
|
||
|
| Keyword | Description |
|
||
|
| :--------: | ------------------------------------- |
|
||
|
| `true` | Boolean true literal |
|
||
|
| `false` | Boolean false literal |
|
||
|
| `let` | Variable declaration |
|
||
|
| `const` | Constant declaration |
|
||
|
| `if` | If statement |
|
||
|
| `else` | else block of if statement |
|
||
|
| `while` | While loop |
|
||
|
| `loop` | Infinite loop |
|
||
|
| `for` | For loop |
|
||
|
| `in` | Containment test, part of for loop |
|
||
|
| `continue` | Continue a loop at the next iteration |
|
||
|
| `break` | Loop breaking |
|
||
|
| `return` | Return value |
|
||
|
| `throw` | Throw exception |
|
||
|
| `private` | Mark function private |
|
||
|
| `import` | Import module |
|
||
|
| `export` | Export variable |
|
||
|
| `as` | Alias for variable export |
|
||
|
| `fn` | Function definition |
|
||
|
| `type_of` | Get type name of value |
|
||
|
| `print` | Print value |
|
||
|
| `debug` | Print value in debug format |
|
||
|
| `eval` | Evaluate script |
|