RosettaCodeData/Task/Count-in-octal/Tcl/count-in-octal.tcl
Ingy döt Net 764da6cbbb CDE
2013-04-10 16:57:12 -07:00

4 lines
152 B
Tcl

package require Tcl 8.5; # arbitrary precision integers; we can count until we run out of memory!
while 1 {
puts [format "%llo" [incr counter]]
}