prog8/examples/test.p8

19 lines
231 B
Plaintext
Raw Normal View History

2021-10-13 16:55:56 +00:00
%import textio
main {
sub start() {
ubyte xx
2021-10-13 16:55:56 +00:00
when xx {
2 -> {
}
3 -> {
}
50 -> {
}
else -> {
}
}
}
}