- or download this
$ cat conf.pl
...
__END__
- or download this
$ cat ONE.pm
...
}
1;
- or download this
$ cat TWO.pm
...
}
1;
- or download this
$ cat 1137798.pl
#!/usr/bin/perl -w
...
__END__
- or download this
$ perl 1137798.pl
bar
Use of uninitialized value in print at 1137798.pl line 8.
- or download this
$ cat ONE.pm
...
}
1;
- or download this
$ cat TWO.pm
...
return $conf{'baz'};
}
1;
- or download this
$ perl 1137798.pl
bar
quux
- or download this
$ cat conf.ini
...
baz=quux
less=more
- or download this
$ cat 1137798-2.pl
...
__END__
- or download this
$ perl 1137798-2.pl
bar
quux