home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / programming / tcl / tcl_1 / !wtest_sortstr < prev    next >
Encoding:
Text File  |  1996-03-26  |  93 b   |  5 lines

  1. while 1\
  2.  { set s [gets stdin]
  3.    if {$s==""} exit
  4.    puts [join [lsort [split $s ""]] ""]
  5.  }