// g for single globale variables to Use in Procedures g.ganzzahl = 7 g.boolsch = true g.zeichenkette = " Hallöchen "
something = "abc" // becomes in Procedures not used worth = 47.11
testoop worth
proc testoop w // w becomes as Parameter "by value" transfer global g // for all global g. ... variables sehrklein = 0.01 // local Variable in the procedure small = g.ganzzahl + sehrklein print g.zeichenkette + w + " > " + small + " is " + g.boolsch endproc