Skip to content

Commit

Permalink
Fix applyx. (#365)
Browse files Browse the repository at this point in the history
Co-authored-by: porcuquine <[email protected]>
  • Loading branch information
porcuquine and porcuquine authored Nov 5, 2024
1 parent 821fece commit ee3e1bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/util.lurk
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@
!(defrec applyx (lambda (f args)
(if args
(if (cdr args)
(apply (f (car args)) (cdr args))
(applyx (f (car args)) (cdr args))
(f (car args))))))

!(def not (lambda (x) (if x nil t)))
Expand Down

0 comments on commit ee3e1bc

Please sign in to comment.