Loading libraries in Dr Scheme - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T05:18:16Zhttp://stackoverflow.com/feeds/question/712905http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/712905/loading-libraries-in-dr-scheme1Loading libraries in Dr Schemeabhirama2009-04-03T07:40:41Z2009-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#7129833Answer by Lieven for Loading libraries in Dr SchemeLieven2009-04-03T08:09:33Z2009-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#7129841Answer by Barry Brown for Loading libraries in Dr SchemeBarry Brown2009-04-03T08:09:37Z2009-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>