Posted: Thu Jun 24, 2004 12:02 pm
Hi, i heard Polo petition, and i made a beta version that supports maths like any compiler, except for priority by math operator, you can use brackets to define the priority, and scriptvm made maths operation from left to right. If someone can test to found bugs and release a final version, you can download the compiler here: http://www.balrogsoftware.com/scriptvm/ ... VMComp.zip
Overwrite to the compiler located on 'Compiler\' directory.
Here is an example to show the new feature:
Bye...
Overwrite to the compiler located on 'Compiler\' directory.
Here is an example to show the new feature:
Code: Select all
Declare var1.l
Extern Str
var1=5*(4-35)/6-(GetTickCount()/1000)
If var1<-34+(5/(4*14))
MessageBox(0,Str(var1),"Testing",0)
EndIf
EndProgram