prog8/examples/test.p8
2024-09-20 19:55:32 +02:00

11 lines
133 B
Lua

main {
sub start() {
ubyte i
i++
ubyte i, j ; redefinition
i++
j++
}
}