I fixed the bug that Nik found, and I've updated the compiler package. See the download link he provided, or the download button at the end of this post.
I've been busy at work updating my compiler! Apart from all the other stuff it suppoted (+ - * / ( ) ^, floats, longs) I've added in variable type declaration (you can use .l, .f and .s the same way as in PB - variables are no longer automatically set to a long), strings and constants!
The following is all valid:
Code: Select all
#Constant=1
A.s="bob"+jim"
B.s="kim"
C.s=A+B
D.f=#Constnat
E.f=2.1
F.f=D+E
DOWNLOAD