Help for this page

Select Code to Download


  1. or download this
      use Local::Some::Real::Cool::Module;
    
      $this = Local::Some::Real::Cool::Module->new();
      $that = Local::Some::Real::Cool::Module->new();
      $more = Local::Some::Real::Cool::Module->new();
    
  2. or download this
      use Local::Some::Real::Cool::Module;
      $gimme = 'Local::Some::Real::Cool::Module';
    ...
      $this = $gimme->new();
      $that = $gimme->new();
      $more = $gimme->new();
    
  3. or download this
      # Nope
      $gimme = use Local::Some::Real::Cool::Module;
    
  4. or download this
    #!/usr/bin/perl
    
    ...
    
    'Local::Some::Real::Cool::Module';