Lox

Garbage Collection

Types

  • Boolean
  • Number
  • String
  • Nil

binary operations infix and postfix postfix:

-negateMe;

Infix:

add + me;
subtract - me;
multiply * me;
divide / me;

No implicit conversion ie)

123 == "123" // false

logical operators !, and, or control flow constructs in the guise of expressions

No bitwise, shift, modulo, or conditional operators.