Compare commits
No commits in common. "bdee60426f691b8825fa3c2392fb84b2bbaaa0d6" and "e89e089af27e1997d8f17b9e7e0e8b0921581f97" have entirely different histories.
bdee60426f
...
e89e089af2
|
@ -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
|
||||
```
|
|
@ -1,3 +0,0 @@
|
|||
/* This is a block comment
|
||||
It has a new line */
|
||||
abc==123
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue