0
0
This repository has been archived on 2024-05-25. You can view files and clone it, but cannot push or open issues or pull requests.
legacy-code/test/functions.jce

13 lines
221 B
Plaintext
Executable File

def test $text $varname &$printed
global ${$varname}
mov $printed true
echo $text " " ${$varname}
end
mov $b 42
mov $printed false
drw "printed? " $printed
test "value of b is:" "b" $printed
drw "printed? " $printed