selectors support for hash
Some checks failed
Build / build (push) Successful in 10m20s
Test / build (push) Failing after 16m7s

This commit is contained in:
Chuck Smith
2024-03-21 16:39:31 -04:00
parent d3471af03d
commit 66d5453ecc
8 changed files with 98 additions and 2 deletions

View File

@@ -107,6 +107,8 @@ func (l *Lexer) NextToken() token.Token {
tok = newToken(token.SEMICOLON, l.ch)
case ',':
tok = newToken(token.COMMA, l.ch)
case '.':
tok = newToken(token.DOT, l.ch)
case '(':
tok = newToken(token.LPAREN, l.ch)
case ')':