I'm relatively new to scheme and am having a hard time finding a concrete document online overviewing the major changes that happened with R6RS. Anyone care to elaborate?

link|improve this question

64% accept rate
2  
R5RS and R6RS are worlds apart, and it's probably worth treating them as totally separate languages. – Chris Jester-Young Mar 28 '11 at 7:33
feedback

1 Answer

http://community.schemewiki.org/?R6RS has compiled a list of high level changes with some commentary, including:

  • case sensitive syntax
  • square brackets are now equivalent to parentheses (e.g., (let ([foo 3]) ...) - this was supported in some scheme implementations but is now part of the standard
  • retaining the ability to return multiple values
  • unspecified order of evaluation (e.g., for all procedure calls the operator and operands are evaluated in no particular order)
  • more escape characters in strings, e.g., "\n"
  • hashtables as a library
  • multiline and expression comments

http://www.r6rs.org/versions/CHANGES

http://www.r6rs.org/formal-comments/

http://lambda-the-ultimate.org/node/1342

If you're relatively new to scheme though you might get more mileage just reading the spec instead of skimming a changelog though...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.