Sergei Tulentsev wrote:
> def a(p)
> {
> when(p > 0)
> b(p - 1);
> }
> and b(p)
> {
> WriteLine(p);
> a(p);
> }
Cool! This is definitely must be somewere on the Wiki. May be it is, but
I couldn't find.