HY everyone,
for class i had to import some libraries.
i got an error, after checking the libraries out, the problem basically boils down to
r6rs that gives this error : define-record-type: unbound identifier in module in: define-record-type
in this librarie :
#lang r6rs
(library
(scenario-line)
(export new say-what says-who say-it)
(import ;...
)
(define-record-type scenario-line
(new figure text)
scenario-line?
(figure says-who)
(text say-what))
(define (say-it scenario-line)
(diagonal-paste (diagonal-paste (says-who scenario-line)
(new-cloud 15 15))
(new-text-cloud (say-what scenario-line)))))