fork download
  1. my @a = ("hello", "world");
  2. print(@a); # OK
  3. print((@a)); # OK
  4.  
Success #stdin #stdout 0.18s 80748KB
stdin
Standard input is empty
stdout
hello worldhello world