prog8/compiler/examples/test.p8

18 lines
120 B
Plaintext
Raw Normal View History

%option enable_floats
2018-08-16 21:10:28 +00:00
2018-10-02 22:25:04 +00:00
2018-09-15 22:59:12 +00:00
~ main {
byte[10,5] barray = 0
2018-10-01 20:23:16 +00:00
sub start() {
X=barray[2,3]
barray[3,3]=X
}
2018-10-04 18:47:52 +00:00
2018-10-07 00:05:26 +00:00
}