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