Loading libraries in Dr Scheme - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T05:18:16Z http://stackoverflow.com/feeds/question/712905 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/712905/loading-libraries-in-dr-scheme 1 Loading libraries in Dr Scheme abhirama 2009-04-03T07:40:41Z 2009-04-03T08:21:40Z <p>I am working through SICP using Dr Scheme.</p> <p>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?</p> <p>I tried with the following: <strong>(require (lib "math.ss"))</strong></p> <p>Got the following error: <strong>reference to undefined identifier: require</strong></p> <p>I have chosen R5RS as the language.</p> http://stackoverflow.com/questions/712905/loading-libraries-in-dr-scheme/712983#712983 3 Answer by Lieven for Loading libraries in Dr Scheme Lieven 2009-04-03T08:09:33Z 2009-04-03T08:21:40Z <p>Change the language to Pretty Big. 'require' is not an <a href="http://www.schemers.org/Documents/Standards/R5RS/" rel="nofollow">R5RS </a>feature. </p> http://stackoverflow.com/questions/712905/loading-libraries-in-dr-scheme/712984#712984 1 Answer by Barry Brown for Loading libraries in Dr Scheme Barry Brown 2009-04-03T08:09:37Z 2009-04-03T08:09:37Z <p>I don't know how to do it in R5RS, but it works under the Pretty Big language. Will that be good enough for your assignments?</p>