2024-09-08 11:52:55 +09:00
2024-09-08 11:52:55 +09:00
2024-09-07 23:03:56 +09:00
2024-09-07 23:03:56 +09:00
2024-09-02 16:35:55 +09:00
2024-09-08 11:52:55 +09:00
2024-09-07 23:03:56 +09:00
2024-09-07 23:03:56 +09:00
2024-09-07 23:03:56 +09:00
2024-09-07 23:08:30 +09:00
2024-09-07 23:03:56 +09:00
2024-09-04 12:20:58 +09:00
2024-09-08 11:52:55 +09:00
2024-09-04 12:20:58 +09:00

  • (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%