I work through SICP using Dr Scheme.
How to load external libraries in Dr Scheme? Suppose I want to use a Math library, then how can I ask Dr Scheme about loading a specific library?
I tried the following:
(require (lib "math.ss"))
The following error appeared:
link to undefined identifier: require
I chose R5RS as the language.
abhirama
source
share