Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 6th, 2012  |  syntax: None  |  size: 0.16 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. package Foo;
  2. # package for tests, it provides functions baz() and quux()
  3. use strict;
  4. use warnings;
  5.  
  6. sub baz {  return "baz\n"; };
  7. sub quux { return "quux\n"; };
  8.  
  9. 1;