Documentation
¶
Index ¶
Constants ¶
View Source
const ( //keywords LET = "LET" FUNCTION = "FUNCTION" RETURN = "RETURN" TRUE = "TRUE" FALSE = "FALSE" IF = "IF" ELSE = "ELSE" //identifier, literal IDENT = "IDENT" INT = "INT" STRING = "STRING" //symbols ASSIGN = "=" PLUS = "+" MINUS = "-" ASTERISK = "*" BANG = "!" SLASH = "/" EQ = "==" NOT_EQ = "!=" LT = "<" GT = ">" LPAREN = "(" RPAREN = ")" LBRACE = "{" RBRACE = "}" LBRACKET = "[" RBRACKET = "]" COMMA = "," SEMICOLON = ";" COLON = ":" //necessarily needed ILLEGAL = "ILLEGAL" EOF = "EOF" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
Click to show internal directories.
Click to hide internal directories.