I am working through SICP using Dr Scheme.
How do I load external libraries in Dr Scheme? Say I want to use Math library then how do I ask Dr Scheme to load the particular library?
I tried with the following: (require (lib "math.ss"))
Got the following error: reference to undefined identifier: require
I have chosen R5RS as the language.
Change the language to Pretty Big. 'require' is not an R5RS feature.
Use this for r5rs:
(#%require (lib "math.ss"))
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With