2009/8/30 Michele Zaffalon michele.zaffalon@gmail.com:
I understand. Just confused by this sentence: http://dynamo.iro.umontreal.ca/~gambit/wiki/index.php/Documentation#SRFI:s michele
Err, this sentence indeed states that SRFI 9 is builtin. I checked SRFI-9 (as I don't know the name of each)… Records ? I do have that built-in !
(define-record-type :pare
(kons x y) pare? (x kar set-kar!) (y kdr))
(pare? (kons 1 2))
#t
(pare? (cons 1 2))
#f
How comes you don't?
P!