Documentation
¶
Index ¶
Constants ¶
View Source
const ( ILLEGAL = "ILLEGAL" EOF = "EOF" // identifier IDENT = "IDENT" // ex: add, foobar, x, y... INT = "INT" // ex: 1234 // operator ASSIGN = "=" PLUS = "+" MINUS = "-" ASTERISK = "*" SLASH = "/" EQ = "==" NOT_EQ = "!=" BANG = "!" LT = "<" GT = ">" // delimiter COMMA = "," SEMICOLON = ";" LPAREN = "(" RPAREN = ")" LBRACE = "{" RBRACE = "}" // keyword FUNCTION = "FUNCTION" LET = "LET" TRUE = "TRUE" FALSE = "FALSE" IF = "IF" ELSE = "ELSE" RETURN = "RETURN" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
Click to show internal directories.
Click to hide internal directories.