vote up 0 vote down star

Hi,

I cannot seem to figure out how I can add the 'when' keyword to BOO which should behave as an 'if'. I figure I could make a method, but then I cannot move the when around like I can with if. Any pointers would be appreciated.

-Mark

flag

2 Answers

vote up 6 vote down

This would do what you want:

import Boo.Lang.Compiler.Ast
import Boo.Lang.Compiler.MetaProgramming

macro when:
    return [|
        if $(when.Arguments[0]):
            $(when.Block)
    |]

x = 1
when x == 1:
    print "x equals one"
when x == 2:
    print "x equals two"

Btw, feel free to (also) ask on the Boo mailing-list to get (more) answers quicker ;)

http://groups.google.com/group/boolang/

link|flag
Thanks, this is very helpful, now only if SO would send me an e-mail notifying you answered it. – Anonymous Jan 26 at 11:43
Hehe, well that's why I advised you to subscribe to the Boo mailing-list for your future questions (or just to keep up with the updates of the language ;) ) – cedricv Jan 30 at 5:30
Good answer. Note that if you also want to support "when... else", it'll get trickier. – Avish Aug 31 at 20:42
vote up 0 vote down

This would be a job for a macro. From the page you linked to, it seems that Boo has syntactic macros.

As an aside note, why do you need an exact duplicate of an existing functionality?

link|flag
The page linked to was an edit :) I saw that and all but for the if functionality I was unable to get it to work. Reason why I want it is for a DSL (readability). – Anonymous Jan 16 at 12:29

Your Answer

Get an OpenID
or

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