OX - the manpage
file: code/MyApp/Controller.pm 10: sub index { 11: my $self = shift; 12: return $self->counter_model->counter; 13: } 14: 15: sub inc { 16: my $self = shift; 17: return $self->counter_model->inc; 18: } 19: 20: sub dec { 21: my $self = shift; 22: return $self->counter_model->dec; 23: } 24: 25: sub reset { 26: my $self = shift; 27: return $self->counter_model->reset; 28: }