#!/usr/local/bin/tclsh # $Id: strcat.tcl,v 1.4 2001/02/22 01:31:21 doug Exp $ # http://www.bagley.org/~doug/shootout/ # from: Kristoffer Lawson proc main {n} { incr n while {[incr n -1]} { append str "hello\n" } puts [string length $str] } main [lindex $argv 0]