Help for this page

Select Code to Download


  1. or download this
    sub xxx : Local Args(0) {
        my ($self, $c, $s, $r, $p) = @_;
        $c->res->body( wantarray );
    }
    
  2. or download this
    sub xxx : Local Args(0) {
        my ($self, $c) = @_;
        function_in_void_context();
    ...
        # Naked function calls in Cat is code smell.
        $c->res->body("Value or none if falling back to template, etc");
    }