Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
        return $x * $y;
    }
    
  2. or download this
    use warnings;
    use strict;
    use feature 'say';
    ...
    say $o->foo(2, 2);
    say Obj::foo(2, 2);
    say foo(2, 2);
    
  3. or download this
    4
    4
    4