Add years for Scheme standards
This commit is contained in:
parent
c8b86f4768
commit
d4b55fe40f
|
@ -129,8 +129,11 @@
|
||||||
"scheme-standard"
|
"scheme-standard"
|
||||||
'(p)
|
'(p)
|
||||||
(tabulate
|
(tabulate
|
||||||
'("ID" "Name")
|
'("ID" "Name" "Year")
|
||||||
(map the-usual
|
(map (lambda (entry)
|
||||||
|
(let ((year (assoc? 'year entry)))
|
||||||
|
(append (the-usual entry)
|
||||||
|
(list (if year (number->string year) "")))))
|
||||||
(sort-by-id (group-file 'id "scheme-standard.scm"))))))
|
(sort-by-id (group-file 'id "scheme-standard.scm"))))))
|
||||||
|
|
||||||
(define (scheme-id)
|
(define (scheme-id)
|
||||||
|
|
|
@ -1,32 +1,42 @@
|
||||||
(id dsssl)
|
(id dsssl)
|
||||||
(description "Document Style Semantics and Specification Language (ISO/IEC 10179:1996)")
|
(description "Document Style Semantics and Specification Language (ISO/IEC 10179:1996)")
|
||||||
|
(year 1996)
|
||||||
|
|
||||||
(id ieee-1178-1990)
|
(id ieee-1178-1990)
|
||||||
(description "IEEE Standard for the Scheme Programming Language (1178-1990)")
|
(description "IEEE Standard for the Scheme Programming Language (1178-1990)")
|
||||||
|
(year 1990)
|
||||||
|
|
||||||
(id r0rs)
|
(id r0rs)
|
||||||
(description "Scheme: An Interpreter for Extended Lambda Calculus (AI Memo No. 349)")
|
(description "Scheme: An Interpreter for Extended Lambda Calculus (AI Memo No. 349)")
|
||||||
|
(year 1975)
|
||||||
|
|
||||||
(id r1rs)
|
(id r1rs)
|
||||||
(description "The Revised Report on Scheme (AI Memo No. 452)")
|
(description "The Revised Report on Scheme (AI Memo No. 452)")
|
||||||
|
(year 1978)
|
||||||
|
|
||||||
(id r2rs)
|
(id r2rs)
|
||||||
(description "The Revised Revised Report on Scheme (AI Memo No. 848)")
|
(description "The Revised Revised Report on Scheme (AI Memo No. 848)")
|
||||||
|
(year 1985)
|
||||||
|
|
||||||
(id r3rs)
|
(id r3rs)
|
||||||
(description "Revised^3 Report on the Algorithmic Language Scheme")
|
(description "Revised^3 Report on the Algorithmic Language Scheme")
|
||||||
|
(year 1986)
|
||||||
|
|
||||||
(id r4rs)
|
(id r4rs)
|
||||||
(description "Revised^4 Report on the Algorithmic Language Scheme")
|
(description "Revised^4 Report on the Algorithmic Language Scheme")
|
||||||
|
(year 1991)
|
||||||
|
|
||||||
(id r5rs)
|
(id r5rs)
|
||||||
(description "Revised^5 Report on the Algorithmic Language Scheme")
|
(description "Revised^5 Report on the Algorithmic Language Scheme")
|
||||||
|
(year 1998)
|
||||||
|
|
||||||
(id r6rs)
|
(id r6rs)
|
||||||
(description "Revised^6 Report on the Algorithmic Language Scheme")
|
(description "Revised^6 Report on the Algorithmic Language Scheme")
|
||||||
|
(year 2007)
|
||||||
|
|
||||||
(id r7rs)
|
(id r7rs)
|
||||||
(description "Revised^7 Report on the Algorithmic Language Scheme (small language)")
|
(description "Revised^7 Report on the Algorithmic Language Scheme (small language)")
|
||||||
|
(year 2013)
|
||||||
|
|
||||||
(id r7rs-large)
|
(id r7rs-large)
|
||||||
(description "Revised^7 Report on the Algorithmic Language Scheme (large language)")
|
(description "Revised^7 Report on the Algorithmic Language Scheme (large language)")
|
||||||
|
|
Loading…
Reference in New Issue