Help for this page

Select Code to Download


  1. or download this
    $ steps.pl 1 10 5
    1, 3.25, 5.5, 7.75, 10
    
    $ steps.pl 10.5 -10.7 4
    10.5, 3.43333333333333, -3.63333333333333, -10.7
    
  2. or download this
    #!/usr/bin/perl
    use strict;
    use warnings;
    ...
        push @array, $first += $increment;
    }
    print join(", ", @array) . "\n";