fork download
  1. V[${#V[@]}]="FOO\n";
  2. V[${#V[@]}]="BAR";
  3. V[${#V[@]}]="\nFOO";
  4.  
  5. echo -e ${V[@]};
Success #stdin #stdout 0.02s 5312KB
stdin
Standard input is empty
stdout
FOO
 BAR 
FOO