Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    my $s = "foo bar baz qux 3 3 1 3";
    ...
    while (@a) {
        print (shift @a), (shift @a), "\n";
    }
    
  2. or download this
    33
    13
    
  3. or download this
    31 # and no newline!