Name
NOT
Syntax
NOT (ausdruck)
ausdruck, Typ real
Liefert das logische Gegenteil von ausdruck zurück.
Logisch wahr (=1) ist in GDL jeder Wert ungleich 0. Logisch falsch (=0) demnach Wert=0.
Damit übergibt NOT() als Ergebnis 0 oder 1
Logisch wahr (=1) ist in GDL jeder Wert ungleich 0. Logisch falsch (=0) demnach Wert=0.
Damit übergibt NOT() als Ergebnis 0 oder 1
status=12
if status then print "wahr"
if not(status) then print "falsch"
if status then print "wahr"
if not(status) then print "falsch"