Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    
    @values[2, 3] = (0.5, 0.845);
    printf "Second statement:\t%s\n", join "\t", @values;
    
  2. or download this
    First statement:    0    0    0    0    0    0    0    0    0    0
    Second statement:    0    0    0.5    0.845    0    0    0    0    0  
    +  0