Documentation ¶
Index ¶
Constants ¶
View Source
const ( ILLEGAL = "ILLEGAL" EOF = "EOF" // Keywords FUNCTION = "FN" LET = "LET" IF = "if" ELSE = "else" RETURN = "return" TRUE = "true" FALSE = "false" IDENT = "IDENT" // Identifier INT = "INT" // Literal STRING = "STRING" // Operators ASSIGN = "=" PLUS = "+" MINUS = "-" MUL = "*" DIV = "/" BANG = "!" EQ = "==" NEQ = "!=" LT = "<" GT = ">" // Delimiters COMMA = "," SEMICOLON = ";" LPAREN = "(" RPAREN = ")" LBRACE = "{" RBRACE = "}" LBRACKET = "[" RBRACKET = "]" COLON = ":" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
Click to show internal directories.
Click to hide internal directories.