Files
l2/tests/with_variables.sl

14 lines
183 B
Plaintext
Raw Normal View History

2026-01-08 16:05:43 +01:00
import ../stdlib/stdlib.sl
import ../stdlib/io.sl
word main
3 4 5 6
with a b c d in
b puti cr
a puti cr
d puti cr
c puti cr
end
0
end