Latest OxygenBasic.zip at GitHub (Click on the Wizard)
0 Members and 1 Guest are viewing this topic.
'BY VALUE:let a=1 'syslet b=1.0 'doublelet c="1" 'string'BY VARIABLE:let d=a 'syslet e=c 'string'BY TYPE:"type vector single x,y,zlet v=vector : v.x=2 'vectorlet w=v : 'vector w.x=2'BY FACTORY FUNCTION:function vcreate(sys n) as vector*return getmemory n*sizeof vectorend functionlet u=vcreate(10) 'vector'MULTI-LET:"let a,b,c,d=pi 'double precision pies