Search Results for: Zea mays var. saccharata
(define-syntax let (syntax-rules () ((let ((var expr) ...) body ...)
((lambda (var ...) body ...) expr ...)))) thus using let as defined above a scheme implementation would rewrite "(let ((a )(b )) (+ b a))" as "((lambda (a b) (+ b a)) )", which reduces implementation's task to that of coding procedure instantiations. in , sussman and steele remarked that the minimalism...
https://en.wikipedia.org/wiki/Scheme_(programming_language)