Help for this page

Select Code to Download


  1. or download this
    my $n = 9;
    my $list = (1..$n);
    
  2. or download this
    use strict;
    use warnings;
    ...
    my $list = (1..$n);
    
    print "'$list'\n";