Help for this page

Select Code to Download


  1. or download this
    # off hand code
    
    ...
            unless @_ <= 1 and DEBUG;
        return "Hello " . ( $_[0] or "world" ) .".";
    }
    
  2. or download this
    function:  
        name: make_greeting
    ...
        languages: perl
        type: string
        perl:  return "Hello " . ( $_[0] or "world" ) .".";