mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
Added if-not expression.
Importing documentation generator tool. A kind of...
This commit is contained in:
@@ -18,6 +18,10 @@
|
||||
(define-macro (dec! n)
|
||||
`(set! ,n (- ,n 1)))
|
||||
|
||||
(define-macro (if-not . body)
|
||||
`(if (not ,(car body))
|
||||
,@(cdr body)))
|
||||
|
||||
;;
|
||||
;; Allow defining functions like:
|
||||
;; (def name (param1 param2)
|
||||
|
||||
Reference in New Issue
Block a user