by montyanderson on 7/13/24, 10:11 PM with 34 comments
by 1hackaday on 7/14/24, 3:23 PM
by hayley-patton on 7/15/24, 2:01 AM
by tmtvl on 7/14/24, 2:29 PM
I used to like Lisp-1s when I used Scheme, but having used Common Lisp for a while I've come to appreciate Lisp-2s, if only for silly things like...
(defun foo (list)
(declare (type List list))
(assert (> (length list) 1))
(list (second list)
(first list)))
Everything else aside it seems like a nice finger exercise for learning Zig.by revskill on 7/14/24, 4:59 PM
by gleenn on 7/14/24, 4:07 PM
An example usage:
(filter (quicksort '(5 40 1 -3 2) <) (λ (x) (>= x 0)))