mirror of
https://github.com/MeexReay/sustlang.git
synced 2025-06-24 10:33:01 +03:00
9 lines
333 B
Plaintext
9 lines
333 B
Plaintext
FUNC null println text string # println function
|
|
TEMP_VAR char new_line 10 # init line break var
|
|
ADD_STR text new_line # add line break to text var
|
|
WRITE text cout # write text var to console
|
|
FUNC_END # end println function
|
|
|
|
TEMP_VAR string text Hello World!
|
|
USE_FUNC println null text
|