prog8/examples/test.p8

27 lines
207 B
Plaintext
Raw Normal View History

2019-01-26 21:46:01 +00:00
%import c64utils
~ main {
sub start() {
myblock2.foo()
myblock3.foo()
}
}
~ myblock2 {
sub foo() {
A=99
}
}
2019-01-26 21:46:01 +00:00
~ myblock3 {
sub foo() {
A=99
}
}