10 lines
77 B
Text
10 lines
77 B
Text
$i = 0
|
|
loop {
|
|
$i += 1
|
|
|
|
fn.println($i)
|
|
|
|
if(!($i % 6)) {
|
|
con.break
|
|
}
|
|
}
|