Skip to content

Commit

Permalink
checkpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
aappleby committed Oct 20, 2024
1 parent d0e0fe1 commit daaf90b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build.hancho
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ hancho.build_tag = "debug"
hancho.rules = hancho.load("symlinks/hancho/rules.hancho")
hancho.includes = [".", "{repo_dir}"]

c_lexer = hancho.load("examples/c_lexer/c_lexer.hancho")
c_parser = hancho.load("examples/c_parser/c_parser.hancho", c_lexer = c_lexer)
json = hancho.load("examples/json/json.hancho")
regex = hancho.load("examples/regex/regex.hancho")
toml = hancho.load("examples/toml/toml.hancho")
tests = hancho.load("tests/tests.hancho")

c_lexer = hancho.load("examples/c_lexer/c_lexer.hancho")
c_parser = hancho.load("examples/c_parser/c_parser.hancho", c_lexer = c_lexer)
tutorial = hancho.load("examples/tutorial/tutorial.hancho", c_lexer = c_lexer, c_parser = c_parser)

ini = hancho(
Expand Down

0 comments on commit daaf90b

Please sign in to comment.