Help for this page

Select Code to Download


  1. or download this
    class Elf is Character does Thief does Scout {
        method hide { .Scout::hide(@_) }
        ...
    }
    
  2. or download this
    method hide ($self: $action) {
        # $self is required here because the topicalizer assigns
        # $action to $_
    ...
            when Stalking { $self.Scount::hide($action) }
        }
    }