/* iGASM example */ /* Calculates "2+3" and finishing with writing "Step..." message into output window . */ functions a,b:integer; sum:integer; initial a:=2; b:=3; final sum = 5; rules sum:=a+b; writeln := "Step...";