in reply to Re: RunTime & compile Time Doubt on Perl
in thread RunTime & compile Time Doubt on Perl
But this is an aside. The problem in Perl is that certain operations can only be parsed completely in the run-time context.
Consider the following, for which C has no analog (buffer overflows notwithstanding).
Now, some theorists will complain bitterly that this must slow your code down, but this is usually the least of your problems. (See Optimising Perl.. for example)my $str = $ARGV[0]; eval("use $str;");
Thog.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: The complete story is more complicated,
by kscaldef (Pilgrim) on Dec 29, 2006 at 19:03 UTC |