fork download
  1. proc test {args} {
  2. puts $args }
  3. test "Hello" "World"
  4. test "Hi" "There" "World!"
Success #stdin #stdout 0.02s 5272KB
stdin
Standard input is empty
stdout
Hello World
Hi There World!