Help for this page

Select Code to Download


  1. or download this
    public void foo(int x) {
      // do something with x
    }
    ...
    public void foo(int x, int y) {
      // do something with x and y
    }
    
  2. or download this
    sub new {
      my ($class, %data) = @_;
      bless \%data, $class;
    }