Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl
    package a;
    ...
    say thrice(2); #6
    
    say thrice(2) - twice(3) + double(22) + 1;
    
  2. or download this
    #!/usr/bin/env perl
    package Cowbell;
    ...
      return 3*$_[0];
    }