prog8/examples/test.p8

16 lines
246 B
Plaintext
Raw Normal View History

%import textio
%import floats
%zeropage basicsafe
%import test_stack
2020-08-27 17:47:50 +00:00
main {
2020-10-09 20:47:42 +00:00
sub start() {
uword foo = [1,2,3,4] ; TODO SYNTAX ERROR
uword bar = "sdfadsaf" ; TODO SYNTAX ERROR
2020-12-01 02:03:50 +00:00
txt.print("hello\n")
}
2020-08-27 17:47:50 +00:00
}