2
votes
3answers
139 views
Guile scheme - quoted period?
What does the following Guile scheme code do?
(eq? y '.)
(cons x '.)
The code is not valid in MzScheme, is there a portable equivalent across scheme implementation …
0
votes
Guile scheme - quoted period?
Thank you Kyle, I already recognise that this code is not portable, which is why I seek a replacement. I also know that (a . b) is the syntax for a pair in Scheme, but I don't know what (a b '.) m …
2
votes
Guile scheme - quoted period?
Okay, it seems that '. is valid syntax for (string->symbol ".") in Guile, whereas MzScheme at least requires |.| for the period as a symbol.
…
9
votes
Lisp in the real world
ITA software uses a fair amount of CL.
http://www.itasoftware.com/careers/l_e_t_lisp.html?catid=8 …
