fork(46) download
  1. $string = 'One Two Three';
  2. my @array3 = split(" ",$string);
  3. $string = join("\n", @array3);
  4.  
  5. print $string;
Success #stdin #stdout 0s 4596KB
stdin
Standard input is empty
stdout
One
Two
Three