in reply to namespaces and source out
package Foo; print Bar::hello('world'); package Bar; sub hello { my $who = shift; return "hello $who"; } 1; [download]