Help for this page

Select Code to Download


  1. or download this
       #!/usr/bin/perl
       use strict;    # Use good practices
    ...
          my $name = join('', @_);     # Build varname
          print $globals{$name}, "\n"; # use it at will....
       }
    
  2. or download this
       #!/usr/bin/perl
       $barbaz = "something here";
    ...
          $name = join('', @_);  # Build varname
          print $$name, "\n";    # use it AT YOUR RISK!
       }