Basics
Comments
$ wo '(* This comment is ignored *) 5'
5
$ wo '5 (* This comment is ignored *)'
5
Semicolon
$ wo 'x = 2; x'
2
$ wo 'x = 2; x = x + 5'
7
Set
Assign a value to a variable.
$ wo 'Set[x, 5]'
5
$ wo 'Set[x, 5]; x + 3'
8
Print
Print values to the console.
$ wo 'Print[]'
Null
$ wo 'Print[5]'
5
Null