How would you implement it without breaking homoiconicity?
Name:
Anonymous2013-12-20 10:26
I'm not at all means a LISPer so what I'm suggesting could be incredibly idiotic, for that I apologize. But why not something like this? (defun plus ((int a) (int b)) (+ a b))
so it would be like:
(defun <NAME> ((type1 arg1) .. (typen argn)) (<BODY>))