Increment variables

This commit is contained in:
2025-10-30 16:40:41 +11:00
commit 9a66e9ab55
9 changed files with 380 additions and 0 deletions

19
docs/syntax.md Normal file
View File

@@ -0,0 +1,19 @@
## Work in Progress
To create a comment, begin a line with a hash (#) symbol, like python.
Create a string: `string name value bytes`
Create a boolean: `bool name value`
Create an integer: `int name value`
**Note**: A string of dynamic length can be created by setting the bytes to -1.
Print a string: `print name`
Example program (prints "Hello, World"):
```cpp
string var 13 "Hello, world!"
print var
```