Help for this page

Select Code to Download


  1. or download this
    package Inline::Sub;
    use strict;
    ...
        return $ra->re;
    }
    'This statement is false';
    
  2. or download this
    #!/usr/bin/perl
    use strict;
    ...
        $num += (($_ - $ave) ** 2) for @$list;
        return sqrt($num / @$list);
    }