in reply to Re^6: Trying to use App::Fatpackerin thread Trying to use App::Fatpacker
You can have several packages in one file without extra bracketing around them.
#!/usr/bin/perl -w package X; my $name = "foo"; package Y; my $name = "bar"; __END__ "my" variable $name masks earlier declaration in same scope at... [download]