1 Installation🔗ℹ

Use DrRacket to install the sicp package like this:

  1. Open the Package Manager: in DrRacket choose the menu "File" then choose "Package Manager...".

  2. In the tab "Do What I Mean" find the text field and enter: sicp

  3. Finally click the "Install" button.

  4. Test it. Make sure DrRacket has "Determine language from source" in the bottom left corner. Write the following program and click run:

    #lang sicp
    (inc 42)

    The expected output is 43.