Help for this page

Select Code to Download


  1. or download this
        return 42     if $mode eq 'a';
        return (42)   if $mode eq 'b';
    
  2. or download this
        my @l = (42);
        return @l     if $mode eq 'c';