I want the following:
How do I have to modify my code for this?
(defun foo
(if (bar)
(if (foobar)
(print result)
nil)
(barfoo)
This should work as follows: If bar, then: return result if foobar, and nil if not foobar. If not bar, then return barfoo.How do I have to modify my code for this?