Y
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
rvense
1941 days ago
In Scheme,
(define (foo bar) ...)
is equivalent to
(define foo (lambda (bar) ...))
link
mschaef
1941 days ago
Scheme
link