# Booleans

true
false

==>

Document(atom,atom)

# Identifiers

one
twoThree

==>

Document(variableName,variableName)

# Strings

"hello"
"one\"\\two"

==>

Document(string,string)

# Applications

if true then print("hello" | " " | "world")
print "DONE"

==>

Document(keyword,atom,keyword,"variableName.definition",string,string,string,"variableName.definition",string)
