Re: Documentation of all functions provided by MIT Scheme

2020-04-27 Thread Ethylene Glycol
Thank you very much for your quick and helpful reply. ‐‐‐ Original Message ‐‐‐ On Saturday, 25 April 2020 09:58, Chris Hanson wrote: > An easy way is to evaluate (environment-bound-names system-global-environment) > > For undocumented procedures you’ll need to look in the sources. Start

Re: Documentation of all functions provided by MIT Scheme

2020-04-25 Thread Chris Hanson
An easy way is to evaluate (environment-bound-names system-global-environment) For undocumented procedures you’ll need to look in the sources. Start with “src/runtime/runtime.pkg”, which contains most of the bindings going into the global package. Look for clauses of the form (export () …), and

Documentation of all functions provided by MIT Scheme

2020-04-25 Thread Ethylene Glycol
Where can I find a complete list of all the functions provided by MIT Scheme? For example, I discovered by typing at the Scheme prompt that MIT Scheme provides the function length=?, but, as far as I can see, it is not documented on any of the pages linked to on the MIT Scheme homepage.