Skip to content

Commit

Permalink
readme: Remove erroneous parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
squeek502 committed Apr 18, 2022
1 parent cc205d1 commit 68e750a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ Goals, in order of priority:
+ [x] Basic number parsing
+ [ ] Proper `strtod`-compatible number parsing implementation
- [ ] Parser (lparser.c/.h) (in Lua this was done as one step with no AST intermediate)
+ [x] Parsing tokens into an AST -> ([parse.zig](src/parse.zig)) (mostly done, needs some more testing/cleanup)
+ [ ] Compiling the AST into bytecode -> ([compiler.zig](src/compiler.zig))
+ [x] Parsing tokens into an AST -> [parse.zig](src/parse.zig) (mostly done, needs some more testing/cleanup)
+ [ ] Compiling the AST into bytecode -> [compiler.zig](src/compiler.zig)
- [ ] ...

## Why Lua 5.1?
Expand Down

0 comments on commit 68e750a

Please sign in to comment.