prog8/compiler/examples/test.p8

16 lines
106 B
Plaintext
Raw Normal View History

2018-10-16 00:26:35 +00:00
%import c64utils
2018-10-16 23:01:01 +00:00
%import mathlib
~ main {
sub start() {
2018-10-18 00:14:13 +00:00
c64utils.init_system()
2018-10-16 23:01:01 +00:00
2018-10-16 00:26:35 +00:00
return
2018-10-16 23:01:01 +00:00
2018-10-13 14:09:10 +00:00
}
2018-10-16 00:26:35 +00:00
}