prog8/examples/test.p8
2021-10-15 00:28:23 +02:00

19 lines
231 B
Lua

%import textio
main {
sub start() {
ubyte xx
when xx {
2 -> {
}
3 -> {
}
50 -> {
}
else -> {
}
}
}
}