みなさん、
クラスの場合、いくつかのライブラリをインポートする必要がありました。
エラーが発生しました。ライブラリをチェックアウトした後、問題は基本的に次のようになります
このエラーを与える r6rs : define-record-type: unbound identifier in module in: define-record-type
このライブラリで:
#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)))))