mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 14:54:07 +10:00
45 lines
366 B
Markdown
45 lines
366 B
Markdown
# Reserved Words
|
|
|
|
The following list of words have special meaning to the language, so they can't be used as names for variables or functions.
|
|
|
|
```txt
|
|
any
|
|
array
|
|
as
|
|
assert
|
|
bool
|
|
break
|
|
class
|
|
const
|
|
continue
|
|
do
|
|
else
|
|
export
|
|
false
|
|
float
|
|
fn
|
|
function
|
|
for
|
|
foreach
|
|
function
|
|
if
|
|
import
|
|
in
|
|
int
|
|
null
|
|
of
|
|
opaque
|
|
print
|
|
return
|
|
string
|
|
table
|
|
true
|
|
type
|
|
typeas
|
|
typeof
|
|
var
|
|
while
|
|
yield
|
|
```
|
|
|