rsiedl has asked for the wisdom of the Perl Monks concerning the following question:
and guts.pl might look like:#!/usr/bin/perl use SOME::Module; my $blah = new SOME::Module; $blah->start; use 'guts.pl'; $blah->end; exit;
I know this code is useless and wont work, it's just to help explain my question :)#!/usr/bin/perl my %data = ( lots of data ); foreach (keys %data) { $main::blah->calc($_); } exit;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: include file "inline"
by davorg (Chancellor) on Mar 06, 2006 at 09:29 UTC | |
Re: include file "inline"
by jkva (Chaplain) on Mar 06, 2006 at 10:52 UTC | |
Re: include file "inline"
by ambrus (Abbot) on Mar 06, 2006 at 19:17 UTC | |
Re: include file "inline"
by NiJo (Friar) on Mar 06, 2006 at 13:36 UTC | |
Re: include file "inline"
by broquaint (Abbot) on Mar 06, 2006 at 17:36 UTC | |
Re: include file "inline"
by radiantmatrix (Parson) on Mar 06, 2006 at 19:49 UTC | |
Re: include file "inline"
by kutsu (Priest) on Mar 06, 2006 at 19:28 UTC | |
Re: include file "inline"
by zentara (Cardinal) on Mar 06, 2006 at 13:38 UTC | |
by Limbic~Region (Chancellor) on Mar 06, 2006 at 14:17 UTC |