|
|
|
|
MOUSE-79 EXPRESSIONS
Expression | Mouse code | Notes |
X AND Y | X. Y. * | (if X and Y are 0 or 1) |
X OR Y | X. Y. + | (if X and Y are 0 or 1; gives 2 if X and Y are both 1) |
if (X > 0) then S | X. [S] | |
if (X >= 0) then S | X. 1+ [S] | (x+1 > 0) |
while (B) S | ( B ^ S ) | |
do S while B | ( S B ^ ) | |
for I=1 to 10 S | I 1= ( 11 I. - ^ S I I. 1+ = ) | |
for I=10 to 1 step -1 S | I 10= ( I. ^ S I I. 1- = ) | |
loop forever S | ( S ) | |
break (out of loop) | 0 ^ | |
Contact Information
I may be contacted at:
|
|