(no title)
blockmeifyoucan | 5 years ago
In common Lisp you can call a regular function defined with defun as (foo "something"), but if bar is a variable containing a fuction you have to use (funcall bar " something"). I agree that this is weird and confusing.
kame3d|5 years ago
You need the * to access the function the variable points to.
oalae5niMiel7qu|5 years ago
It's more like Ruby's method(:foo) and .call().
eigenspace|5 years ago