Help for this page

Select Code to Download


  1. or download this
    my %myHash = (hello=>"Howdy", goodbye=>"See ya");
    
    ...
    __DATA__
    When I want to say hello I say $hello.
    When I want to say goodbye I say $goodbye!
    
  2. or download this
    s/\$(\w+)/dbLookup($1)/eg;
    
    ...
    # Do database lookup (which would take a few more lines!)
    return $lookedup ? $lookedup : '';
    }