in reply to 'use strict;' between libraries
#!/usr/bin/perl use strict; our $pie; require "b.pl"; &getpied; print "The pie says : $pie\n"; [download]
#!/usr/bin/perl use strict; sub getpied { our $pie = "eat me"; } 1; [download]