programming, using op(), was ..RE: Bugfix for GosperSum? (was: cannot load Zeilberger)
Subject: programming, using op(), was ..RE: Bugfix for GosperSum? (was: cannot load Zeilberger)
From: Michel Van den Bergh
Date: Sun, 07 Jan 2007 20:22:22 +0100
>
> You could simulate it by case(expr,test,block([]....), test, .... I
> suppose. Just wordier.
The block statements are not necessary unless you want local variables
and then you need "block"
anyway.
I think
case (
expr1, (
statement1,
statement2
), expr2, (
statement1,
statement2
)
)
looks rather good. I don't like the square brackets. They are not used
as delimiters elsewhere.
Michel