Integer sequence: Difference between revisions

Content added Content deleted
(added Ruby example)
(added Scheme example)
Line 269: Line 269:


Ruby does not limit the size of numbers.
Ruby does not limit the size of numbers.

=={{header|Scheme}}==

<lang scheme>
(let loop ((i 1))
(display i) (newline)
(loop (+ 1 i)))
</lang>

Scheme does not limit the size of numbers.


=={{header|Tcl}}==
=={{header|Tcl}}==