prog8/examples/test.p8
Irmen de Jong dcf487bdc1 fix: correctly insert return statement if needed to prevent 'fall through' into following subroutine
this wasn't working correctly anymore when the last statement before the subroutine was a jump/goto
2021-12-07 21:34:50 +01:00

9 lines
70 B
Lua

%import textio
%zeropage basicsafe
main {
sub start() {
}
}