Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8090607
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T19:46:47+00:00 2026-06-05T19:46:47+00:00

I am new to scheme. This is code sample from SICP course of MIT.

  • 0

I am new to scheme. This is code sample from SICP course of MIT.

 (define (+ x y)
  (if (= x 0)
      y
      (+ (-1+ x) (1+ y))))

How do I convert this to Racket code? I want to convert to Racket because I am using DrRacket for running codes and I like that. It worked until now but complained about increment operators of scheme.

The errors I get are:

  1. define-values: cannot change constant variable: +
  2. reference to undefined identifier: -1+
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T19:46:48+00:00Added an answer on June 5, 2026 at 7:46 pm

    This will work fine in Racket:

    (define (add x y)
      (if (= x 0)
          y
          (add (sub1 x) (add1 y))))
    

    Some comments:

    • The name + for the procedure will be troublesome, because it will clash with the primitive add operation in Scheme; it’s simpler if you use a different name, like add (this will fix the first error)
    • -1+ is not a procedure in Racket, replace it with sub1 (this will fix the second error). Optionally, you could define an alias for this procedure, like this: (define -1+ sub1)
    • 1+ is not a procedure in Racket, replace it with add1. Optionally, you could define an alias for this procedure, like this: (define 1+ add1)
    • Optionally: instead of (= x 0) you can write (zero? x)
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to implement the sample code to this article from 2002 (I know..),
Okay this is my 4th question today on Scheme, still pretty new to Scheme,
I'm using slightly modified sample code provided by the YUI team. When my source
I'm pretty new to Scheme and I'm having trouble writing a function as part
I am currently designing a Membership/Profile scheme for a new project I am working
I'll be starting a new job soon where Scheme is heavily used. I currently
Okay so I have started a new language in class. We are learning Scheme
I have the following code for mongoose schemas var EstacionSchema = new Schema({ nombre
I have a xml called sample.xml <?xml version=1.0?> <note> <to>Tove</to> <from>Jani</from> <heading>Reminder</heading> <body>Don't forget
I'm quite new to C# (coming from a Java background) and I'm working on

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.