prog8/compiler/examples/test.p8
2018-10-08 01:20:53 +02:00

24 lines
204 B
Lua

%option enable_floats
~ main {
sub start() {
str s1 = "hello"
str s2 = "bye"
_vm_write_str(s1)
s1 = s2
_vm_write_str(s1)
s1 = "ciao"
_vm_write_str(s1)
return
}
}