Help for this page

Select Code to Download


  1. or download this
      subtype 'SmallInt'
        => as 'Int'
        => where { $_ < 10 };
    
  2. or download this
    class Person
    {
    ...
    $bob->accept_gift($dog);         # ok
    Person::accept_gift($bob, $dog); # ok
    Person::accept_gift($dog);       # dies