yoyo df44ec05ce fix parse list
add ',' to list function
2024-09-09 16:04:32 +09:00
2024-09-09 15:29:17 +09:00
2024-09-08 11:52:55 +09:00
2024-09-09 15:29:17 +09:00
2024-09-09 15:29:17 +09:00
2024-09-09 15:29:17 +09:00
2024-09-09 15:29:17 +09:00
2024-09-09 00:02:09 +09:00
2024-09-09 15:29:17 +09:00
2024-09-08 19:55:30 +09:00
2024-09-09 15:29:17 +09:00
2024-09-09 16:04:32 +09:00
2024-09-08 11:52:55 +09:00
2024-09-09 15:29:17 +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%