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