Remove extra stuff

This commit is contained in:
2025-10-30 17:15:43 +11:00
parent 976e9dfaa0
commit 5e9c2273a9
3 changed files with 5 additions and 11 deletions

View File

@@ -12,8 +12,10 @@ Create an integer: `int name value`
Print a string: `print name`
Increment an int: `inc name`
Example program (prints "Hello, World"):
```cpp
string var 13 "Hello, world!"
```py
string var 13 "Hello, world!" # Or -1 bytes for a dynamic string
print var
```