| Author |
Comment/Response |
Forum Moderator
email me
 |
12/17/12 10:50am
The reference page for Goto has a multi-line example,
f[a_] := Module[{x = 1.,xp},
Label[begin];
If[Abs[xp - x] < 10^-8, Goto[end]];
xp = x;
x = (x+a/x)/2;
Goto[begin];
Label[end];
x]
f[2]
1.41421
I will ask about it. (Things have been extra busy since 9.0 was released. I don't expect instant response.)
URL: , |
|