vote up 2 vote down star

I had a pretty simple requirement in my Scheme program to execute more than one statement, in the true condition of a 'if'. . So I write my code, something like this:

(if (= 1 1)
 ((expression1) (expression2))  ; these 2 expressions are to be
executed when the condition is true
  (expression3) )

Obviously, the above doesn't work, since I have unintentionally created a # procedure with # arguments. So, to get my work done, I simply put the above expressions in a new function and call it from there, in place of the expression1, expression2. It works.

So, my point here is: is there any other conditional construct which may support my requirement here?

flag

72% accept rate

5 Answers

vote up 5 vote down check

In MIT-Scheme, which is not very different, you can use begin:

(if (= 1 1)
    (begin expression1 expression2)
    expression3)

Or use Cond:

(cond ((= 1 1) expression1 expression2)
      (else expression3))
link|flag
Note that the second expression is really the same as the first: the (cond ...) function has an implicit (begin ...) within each condition it checks, so they are obstensibly the same. – Andrew Song Aug 3 at 16:01
vote up 0 vote down

use (when CONDITION STMTS)

link|flag
vote up 0 vote down

(begin ...) is how you evaluate multiple expressions and return the last one. Many other constructs act as "implicit" begin blocks (they allow multiple expressions just like a begin block but you don't need to say begin), like the body of a cond clause, the body of a define for functions, the body of a lambda, the body of a let, etc.; you may have been using it without realizing it. But for if, that is not possible in the syntax because there are two expressions (the one for true and the one for false) next to each other, and so allowing multiple expressions would make it ambiguous. So you have to use an explicit begin construct.

link|flag
vote up 1 vote down

you can use (begin ...) to get what you want in the true branch of your if statement. See here

link|flag
vote up 1 vote down

You can use COND, or put the expressions into something like PROGN in Lisp (I am not sure how it is called in PLT Scheme. edit: it is called BEGIN).

COND looks like this in Scheme:

(cond [(= 1 1)
       (expression1)
       (expression2)]
      [else
       (expression3)])
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.