mirror of
https://github.com/irmen/prog8.git
synced 2024-11-09 05:08:26 +00:00
19 lines
231 B
Lua
19 lines
231 B
Lua
%import textio
|
|
|
|
main {
|
|
sub start() {
|
|
ubyte xx
|
|
|
|
when xx {
|
|
2 -> {
|
|
}
|
|
3 -> {
|
|
}
|
|
50 -> {
|
|
}
|
|
else -> {
|
|
}
|
|
}
|
|
}
|
|
}
|