Remove erased function arguments

This commit is contained in:
2025-10-23 22:29:04 -07:00
parent e9a02d30a5
commit 11ffd96a91
15 changed files with 791 additions and 760 deletions

View File

@@ -11,7 +11,7 @@ pfunc _%_ : Int → Int → Int := `(x,y) => x % y`
-- should have a few more foreign functions and do this in newt
pfunc divide uses (_,_) : String String × String := `(s) => {
let l = s.length/2|0
return Prelude__$2C_(undefined, undefined, s.slice(0,l), s.slice(l))
return Prelude__$2C_(s.slice(0,l), s.slice(l))
}`
step : List (Int × Int) List (Int × Int)