mirror of
https://github.com/MeexReay/sustlang.git
synced 2025-06-24 02:23:00 +03:00
15 lines
238 B
Plaintext
15 lines
238 B
Plaintext
|
|
FUNC null println text string
|
|
TEMP_VAR char new_line 10
|
|
ADD_STR text new_line
|
|
WRITE text cout
|
|
FUNC_END
|
|
|
|
FUNC string input
|
|
READ_LINE result cin
|
|
FUNC_END
|
|
|
|
INIT_VAR string read
|
|
USE_FUNC input read
|
|
USE_FUNC println null read
|