Help for this page

Select Code to Download


  1. or download this
    sub testc1 {
    if(defined wantarray()) {
    ...
    testc1();
    $a=testc1();
    @a=testc1();
    
  2. or download this
    sub testc2 {
    if(wantarray()) {
    ...
    $x=testc2();
    @x=testc2();
    testc2();