prog8/examples/test.p8

10 lines
120 B
Plaintext
Raw Normal View History

main {
2021-10-27 21:48:02 +00:00
sub start() {
fubar(1,2,3,4)
2021-10-27 21:48:02 +00:00
}
sub fubar(ubyte aa, ubyte bb, ubyte cc, ubyte dd) {
2021-10-27 21:48:02 +00:00
}
}