Hi, I have a bunch of functions with known names.  How do I call them?<div><br></div><div>For example.  If I have functions named &quot;test1&quot;, &quot;test2&quot;, ... &quot;test999&quot; I&#39;d like to call them all:</div>
<div><br></div><div>(define (bigtest)</div><div>  (define base &quot;test&quot;)</div><div>  (for ([n (range 1 1000)])</div><div>    (call-by-name (string-append base (number-&gt;string n)))))</div><div><br></div><div>Thanks,</div>
<div>-Joe</div>