Booleans and if function

This commit is contained in:
2025-10-10 08:30:37 +11:00
parent 3ccf7f845f
commit 91f090dc12

View File

@@ -17,4 +17,16 @@ Example: `print var`
Changes the value of an already created value.
Example `set var = "World"`
Example: `set var = "World"`
## if bool
Runs code if a boolean is true.
Example:
```
create *1 bool = true
if bool {
set var = "BASM!"
}
```