Copyright © 2024 Sebastiaan Heins
Expected an assignment operator. '=' or operator assignment.
make int a = 0
set a 1 // expected =
Expected an assignment operator. '='.
make int a 0 // expected =
Expected a round bracket '('.
define void a [] {} // expected ( instead
Expected a curly bracket '{'.
define void a () (
) // expected { instead
Expected a square bracket '['.
The expression is empty.
do say (()) // empty expression
The operator is not unary.
do say (*2) // * is not unary
The ternary operator is incomplete.
do say (true ? 1) // incomplete ternary operator
The operator is not binary.
do say (2 ! 2) // ! is not binary
Expected a hash operator '#'.
make array list = [1,2,3,4]
set list+1 = 5 // expected #