Difference between revisions of "Operator"

From WikiManual
Jump to: navigation, search
m
m
Line 27: Line 27:
 
{{Logical Comparison Operators}}
 
{{Logical Comparison Operators}}
  
{{Logic Operators}}
+
{{Logic}}
  
 
{{Bitwise Operators}}
 
{{Bitwise Operators}}
 
|}
 
|}

Revision as of 20:36, 23 December 2005

Anything you're likely to see in Robot DNA.

Operators:

Flow Commands:

cond
start else
stop
end

Store Commands:

store
inc dec

The following commands are not supported in versions earlier 2.46:

addstore
substore
multstore
divstore
ceilstore
floorstore
rndstore
sgnstore
abstore
sqrstore
negstore

Basic Commands:

add & sub
mult & div
rnd
*
mod
sgn
abs

Advanced Commands:

angle
dist
ceil
floor
sqr pow
pyth

The following commands are not supported in versions earlier 2.46:

anglecmp
root
logx
sin
cos

Logical Comparison Operators:

> <
>= <=
= !=
%= !%=
~= !~=

Logic:

true
false
and
or
not
xor

Template:Bitwise Operators