12 lines
155 B
Text
12 lines
155 B
Text
|
|
// within another function, eg Main()
|
||
|
|
def loop(n : int) : void
|
||
|
|
{
|
||
|
|
when (n > 0)
|
||
|
|
{
|
||
|
|
WriteLine($"$n");
|
||
|
|
loop(n / 2);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
loop(1024)
|