This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuSo you used nested function call to transfer arguments in nested function so you do not have to use any variable at all. As (arg n) are always local, accidental overshadowing is impossible. Very interesting idea.Quote from: "Kazimir Majorinc"
Welcome to the forum.
(define-macro (my-or)
(
(lambda ()
(if (args 0)
(args 0)
(eval (args 1))
)
)
(eval (args 0))
(args 1)
)
)