Remove old aoc2023 directory

This commit is contained in:
2025-10-25 13:32:30 -07:00
parent 551e31d589
commit 7055874dbb
25 changed files with 210 additions and 1965 deletions

View File

@@ -1 +0,0 @@
../aoc2023/Node.newt

7
aoc2024/Node.newt Normal file
View File

@@ -0,0 +1,7 @@
module Node
import Prelude
pfunc fs : JSObject := `require('fs')`
pfunc getArgs : List String := `arrayToList(String, process.argv)`
pfunc readFile uses (MkIORes) : (fn : String) -> IO String := `(fn) => (w) => Prelude_MkIORes(require('fs').readFileSync(fn, 'utf8'), w)`