Removed debug rune printing th
This commit is contained in:
parent
92c3e41810
commit
6acc11d046
@ -1,7 +1,6 @@
|
||||
package lexer
|
||||
|
||||
import "io"
|
||||
import "fmt"
|
||||
import "github.com/sashakoshka/arf/file"
|
||||
import "github.com/sashakoshka/arf/types"
|
||||
|
||||
@ -33,8 +32,6 @@ func (lexer *LexingOperation) tokenize () (err error) {
|
||||
if err != nil { return }
|
||||
|
||||
for {
|
||||
fmt.Println(string(lexer.char))
|
||||
|
||||
lowercase := lexer.char >= 'a' && lexer.char <= 'z'
|
||||
uppercase := lexer.char >= 'A' && lexer.char <= 'Z'
|
||||
number := lexer.char >= '0' && lexer.char <= '9'
|
||||
|
Reference in New Issue
Block a user