7 lines
74 B
Text
7 lines
74 B
Text
# LONG limit (64 bits signed)
|
|
$l = 1L
|
|
loop {
|
|
fn.println($l)
|
|
|
|
$l += 1
|
|
}
|