Scheme: Difference between revisions

From Noisebridge
Jump to navigation Jump to search
Chris-kun (talk | contribs)
No edit summary
No edit summary
 
(8 intermediate revisions by 4 users not shown)
Line 1: Line 1:
Our attempt to clearly define and explain various aspects of the scheme specification, focusing on the chicken implementation.
Our attempt to clearly define and explain various aspects of the scheme specification, focusing on the chicken implementation.
==== The R5RS Standard ====
* [[scheme/Data_Types|Data Types]]
* [[scheme/Procedures|Procedures]]


==== WANTED ====
==== WANTED ====
Line 6: Line 10:
* dynamic-thunk
* dynamic-thunk
* better explanations of the procedures listed [http://wiki.call-cc.org/man/4/Non-standard%20macros%20and%20special%20forms#other-binding-forms here]
* better explanations of the procedures listed [http://wiki.call-cc.org/man/4/Non-standard%20macros%20and%20special%20forms#other-binding-forms here]
* tail recursion
* syntax-rules
* deeper explanation on the chicken egg ''Design by Contract''


==== The R5RS Standard ====
[[Category:Programming languages]]
* [[scheme:Data_Types|Data Types]]
* [[scheme:Procedures|Procedures]]

Latest revision as of 00:24, 10 July 2019

Our attempt to clearly define and explain various aspects of the scheme specification, focusing on the chicken implementation.

The R5RS Standard

[edit | edit source]

WANTED

[edit | edit source]
  • A simple coroutine implementation with call/cc
    • as well as a better explanation of call-with-values
  • dynamic-thunk
  • better explanations of the procedures listed here
  • tail recursion
  • syntax-rules
  • deeper explanation on the chicken egg Design by Contract