Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    use warnings;
    ...
    do '/tmp/config.pl';
    
    print Dumper(\$config),"\n";
    
  2. or download this
    $config = [
      option1 => 'one',
      option2 => 'two',
      option3 => 'three'
    ];