Remove rouge println in parser

This commit is contained in:
Sasha Koshka 2024-02-08 04:00:25 -05:00
parent bb2d1966b9
commit b3fc38e7c0
1 changed files with 0 additions and 1 deletions

View File

@ -154,7 +154,6 @@ func (this *Parser) parseExpressionRootIdent () (entity.Expression, error) {
case "if": return this.parseIfElse()
case "loop": return this.parseLoop()
default:
println(this.token.String())
this.next()
switch this.kind() {
case lexer.Colon: