Help for this page

Select Code to Download


  1. or download this
    sub cprint {
        $capture ? (print @_) : push(@output,@_);
    }
    
  2. or download this
    sub cprint {
        if($capture) {        # if $capture is != 0, '' or undef
    ...
            push(@output,@_); # stuff goes into @output
        }
    }