PDA

View Full Version : If im free rpg



Jokersams
11-09-12, 10:25
Hallo.

Bin ziemlich neu in diesem Gebiet.
Gibt es im /free RPG eine Art "if not" anweisung ? Und wenn ja, wie wird diese formuliert ?

Beispielweise:
if variable1 <> variable2 "and not" variable1 = 0;
....
...
..

Schonmal danke für die Antworten

B.Hauser
11-09-12, 10:39
Das gibt es schon


Free
If NOT *IN26; //If *IN26 = *OFF

If NOT (A=B); //If A <> B

If Not MyProcCall(Par1: Par2); //If MyProcCall(Par1: Par2) = *OFF

If Not (A=B) and Not (A < 0);

Birgitta

Jokersams
11-09-12, 14:06
Dank dir Birgitta :)