Compare commits

..

No commits in common. "bdee60426f691b8825fa3c2392fb84b2bbaaa0d6" and "e89e089af27e1997d8f17b9e7e0e8b0921581f97" have entirely different histories.

3 changed files with 0 additions and 11 deletions

View File

@ -13,10 +13,4 @@ cd ..
java -cp bin com.craftinginterpreters.lox.Lox
jlox [script]
```
Or
```
java -cp bin com.craftinginterpreters.lox.Lox sample-code.lox
```

View File

@ -1,3 +0,0 @@
/* This is a block comment
It has a new line */
abc==123

View File

@ -95,10 +95,8 @@ class Scanner {
break;
case '=':
addToken(match('=') ? EQUAL_EQUAL : EQUAL);
break;
case '<':
addToken(match('=') ? LESS_EQUAL : LESS);
break;
case '>':
addToken(match('=') ? GREATER_EQUAL : GREATER);
break;