fork download
  1. #!/usr/bin/perl
  2.  
  3. @string = ("One","Two","Three");
  4.  
  5. push(@string, "Four");
  6. print "@string\n";
  7.  
  8. push(@string, True);
  9. print "@string\n";
  10.  
  11. @string[2] =4;
  12. print "@string\n";
  13.  
  14. pop(@string);
  15. print "@string\n";
  16.  
Success #stdin #stdout 0.01s 5216KB
stdin
Standard input is empty
stdout
One Two Three Four
One Two Three Four True
One Two 4 Four True
One Two 4 Four