Reference Index

This reference index is still under construction. If you spot something missing, please consider contributing!

Basic Data Types

  • bool: booleans;
  • int: integers;
  • long: long integers (with L or l suffix);
  • double: double-precision float (decimal literals);
  • string: strings;
  • raw: byte arrays;
  • void: the empty type.

Go to section: Handling Simple Data

Tree operators

Boolean operators

  • ==: is equal to;
  • !=: is not equal to;
  • <: is lower than;
  • <=: is lower than or equal to;
  • >: is higher than;
  • >=: is higher than or equal to;
  • !: negation.

See also conditions and conditional statement.

Behavioural operators

Statements