test.tcl 130 B

12345678
  1. #
  2. proc foo {str1 str2 str3} {
  3. writeln $str1
  4. writeln $str2
  5. writeln $str3
  6. writeln [max $str1 $str3]
  7. return -1
  8. }