Fix parsing and rendering issues, all but 3 of aoc2024 work.
This commit is contained in:
@@ -30,5 +30,8 @@ pfunc writeFile uses (fs MkIORes MkUnit) : String → String → IO (Either Stri
|
||||
}`
|
||||
|
||||
-- maybe System.exit or something, like the original putStrLn msg >> exitFailure
|
||||
pfunc exitFailure : ∀ a. String → a := `(_, msg) => { throw new Error(msg) }`
|
||||
pfunc exitFailure : ∀ a. String → a := `(_, msg) => {
|
||||
console.log(msg);
|
||||
process.exit(1);
|
||||
}`
|
||||
|
||||
|
||||
Reference in New Issue
Block a user