prog8/compiler/test/fixtures/charConstAsRomsubArg.p8

8 lines
101 B
Lua

main {
romsub $FFD2 = chrout(ubyte ch @ A)
sub start() {
const ubyte ch = '\n'
chrout(ch)
}
}