Jump to content

Integer sequence: Difference between revisions

Add lang example
(Add TI SR-56 solution)
(Add lang example)
Line 1,304:
{infinite_set 0}
-> 0 1 2 3 ... forever
</syntaxhighlight>
 
=={{header|Lang}}==
<syntaxhighlight lang="lang">
# LONG limit (64 bits signed)
$l $= long(0)
loop {
fn.println($l)
$l += 1
}
</syntaxhighlight>
 
168

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.