I'm taking a SCHEME course, and I was wandering if there's any difference between writing "λ" or "lambda". To clarify, is there a functional difference between these two snippets ?
Using λ
(define foo
(λ (x)
(...)))
Using lambda
(define bar
(lambda (x)
(...)))