mirror of
https://github.com/irmen/prog8.git
synced 2024-12-24 16:29:21 +00:00
11 lines
133 B
Lua
11 lines
133 B
Lua
main {
|
|
sub start() {
|
|
ubyte i
|
|
i++
|
|
|
|
ubyte i, j ; redefinition
|
|
i++
|
|
j++
|
|
}
|
|
}
|