---------------- ----------------------------------------
*p == q* *p* is equal to *q*
*p ~= q* *p* isn't equal to *q*
- *p* > *q* *p* is greater than *q*
- *p < q* *p* is less than *q*
- *p >= q* *p* is greater than or equal to *q*
- *p <= q* *p* is less than or equal to *q*
+ *p* > *q* *p* is greater than *q*
+ *p < q* *p* is less than *q*
+ *p >= q* *p* is greater than or equal to *q*
+ *p <= q* *p* is less than or equal to *q*
*p ofclass q* object *p* is of class *q*
*p in q* object *p* is a child of object *q*
*p notin q* object *p* isn't a child of object *q*
Array array --> "string";
A **table array** is a set of global words accessed using
-*array-->1*, *array-->2*, ... *array-->N*, with
-*array-->0* initialized to *N*:
+*array-->1*, *array-->2*, ... *array-->N*, with
+*array-->0* initialized to *N*:
Array array table N ;
Array array table expr1 expr2 ... exprN
Array array table "string";
A **byte array** is a set of global bytes accessed using
-*array->0*, *array->1*, ... *array->(N-1)*:
+*array->0*, *array->1*, ... *array->(N-1)*:
Array array -> N;
Array array -> expr1 expr2 ... exprN;
Array array -> "string";
A **string array** is a set of global bytes accessed using
-*array->1*, *array->2*, ... *array->N*, with *array->0*
+*array->1*, *array->2*, ... *array->N*, with *array->0*
initialized to *N*:
Array array string N;