Print strings

This commit is contained in:
2025-10-28 14:48:11 +11:00
parent 9ad3bdbc92
commit 89065711ce
5 changed files with 58 additions and 12 deletions

View File

@@ -8,4 +8,12 @@ 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.
**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
```