Help for this page

Select Code to Download


  1. or download this
    # objects
    my $var = new Squareable(5);
    $var->square();
    print $var; # oh... yields 25... neato!
    
  2. or download this
    $int->add(4); 
    $int->divide(12); 
    print $i->value();
    
  3. or download this
    $i=$i+4;
    $i=$i/12;
    print $i;