Yeah that's true.

Often I don't even use while loops where others would. But that's not really the point.

I just wanted him to do something with nested loops, the examples are actually irrelevant.

Anyway, with a single loop it would be something like:

alias loopit {
var %a = 1, %b
while %a < 11 {
%b = %b $+ %a
echo -a %b
inc %a
}
}

But as stated, I want him to do the nested one :tongue:

Greets

Last edited by FiberOPtics; 21/09/04 02:06 PM.