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 "test1", "test2", ... "test999" I'd like to call them all:</div>
<div><br></div><div>(define (bigtest)</div><div> (define base "test")</div><div> (for ([n (range 1 1000)])</div><div> (call-by-name (string-append base (number->string n)))))</div><div><br></div><div>Thanks,</div>
<div>-Joe</div>