fork download
  1. #!/usr/bin/perl
  2.  
  3. my @ref = (1,2,3);
  4. print(join "-", @ref);
Success #stdin #stdout 0s 17496KB
stdin
Standard input is empty
stdout
1-2-3