prog8/compiler/examples/test.p8

17 lines
129 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 {
2018-10-07 00:05:26 +00:00
byte[2] barray = 0
byte[2] barray2 =0
2018-10-01 20:23:16 +00:00
sub start() {
2018-10-07 00:05:26 +00:00
X=barray[0]
return
}
2018-10-04 18:47:52 +00:00
2018-10-07 00:05:26 +00:00
}