2024-09-13 00:01:08 +09:00
2024-09-13 00:01:08 +09:00
2024-09-08 11:52:55 +09:00
2024-09-12 21:14:16 +09:00
2024-09-12 21:14:16 +09:00
2024-09-13 00:01:08 +09:00
2024-09-12 21:14:16 +09:00
2024-09-13 00:01:08 +09:00
2024-09-12 21:14:16 +09:00
2024-09-08 19:55:30 +09:00
2024-09-13 00:01:08 +09:00
2024-09-09 20:42:20 +09:00
2024-09-10 19:55:02 +09:00
2024-09-13 00:01:08 +09:00
2024-09-04 12:20:58 +09:00

  • see lib/lib.lisp

  • (define fac (lambda (n) (if (== n 0) 1 (* n (fac (+ n -1))))))

  • macro

    (macro and (expr . rest)
        (if rest (list 'if expr (cons 'and rest)) expr))

    (and (== 1 1) (== 0 0) (if nil nil 1) (+ 100 100))
    (and ())
Description
No description provided
Readme 91 KiB
Languages
C 97.2%
Common Lisp 1.9%
Makefile 0.9%