prog8/examples/test.p8

30 lines
295 B
Plaintext
Raw Normal View History

2024-10-27 20:50:48 +00:00
%import textio
%option no_sysinit
2024-10-27 20:50:48 +00:00
%zeropage basicsafe
2024-10-18 20:22:34 +00:00
main {
sub start() {
block1.sub1()
block1.sub2()
}
}
block1 {
%option merge
sub sub1() {
txt.print("sub1")
}
}
block1 {
%option merge
sub sub2() {
txt.print("sub2")
}
}