Switch Compiler 0.2 - Updated 03/04/06!
Posted: Sun Apr 02, 2006 11:12 pm
Update: 03/04/06
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:
As before write your code in Code.txt and run Compiler.exe - ignroe Optimizer.exe as it's automatically run!
DOWNLOAD
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