oren tal Posted April 8, 2007 Share Posted April 8, 2007 What "let" command do in scheme? What is the meaning of sugar syntax? Link to comment Share on other sites More sharing options...
D H Posted April 8, 2007 Share Posted April 8, 2007 "Let" pairs the arguments and their values, making it obvious what the value of each argument is. "Let" is equivalent to a lambda expression in which the argument values are separated from the arguments. This is a prototypical example of "syntactic sugar". "Let" does not add any functionality to Scheme but does makes the existing functionality more understandable. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now