Hacker News new | ask | show | jobs
by DNied 1941 days ago
The syntax of those defines sure looks weird. In what dialect does the name of the function being defined appear as the CAR of a list, followed by the parameters?
2 comments

In Scheme,

    (define (foo bar) ...)
is equivalent to

    (define foo (lambda (bar) ...))
Scheme