2025-09-15 10:12:50 +10:00
|
|
|
### Note: All programs must end with a null terminator.
|
|
|
|
|
|
|
|
### s
|
|
|
|
|
|
|
|
Creates a string. Cannot create strings with a newline in them, but they can include null terminators (but why?).
|
|
|
|
|
2025-09-16 15:58:33 +10:00
|
|
|
Example usage (create string "Dingus"): `sDingus`
|
|
|
|
|
|
|
|
### o
|
|
|
|
|
|
|
|
Outputs a string.
|
|
|
|
|
|
|
|
Example usage (output the 3rd created string, second index): `o2`
|