FUNC null println text string # println function TEMP_VAR char br 10 # line break var ADD_STR text br # add line break to text var WRITE text cout # write text var to console FUNC_END # end println function FUNC null hello_world index integer USE_FUNC println null text FUNC_END INIT_VAR string text SET_VAR text Hello World! TEMP_VAR integer start_index 0 # temp vars can stack TEMP_VAR integer end_index 9 FOR hello_world start_index end_index DROP_VAR text