Help for this page

Select Code to Download


  1. or download this
    $thingy -> foo (1,2);           # results printed to current filehandl
    +e
    $string = $thingy -> foo (1,2); # results returned as a single string
    @lines  = $thingy -> foo (1,2); # results returned as a bunch of lines
    
  2. or download this
    $thingy -> foo (1,2) -> to_output_channel;
    $string = $thingy -> foo (1,2) -> as_string;
    @lines  = $thingy -> foo (1,2) -> as_list;