On Thursday 13 April 2006 09:19, [EMAIL PROTECTED] wrote:
> #!/usr/local/bin/perl
>
> write_function1("first");
> print auto_function(), "\n";
> # This will print:
> # auto_function first
>
> write_function1("second");
> # How would I undefine the autoloaded version of auto_function?
> print auto_f
#!/usr/local/bin/perl
write_function1("first");
print auto_function(), "\n";
# This will print:
# auto_function first
write_function1("second");
# How would I undefine the autoloaded version of auto_function?
print auto_function(), "\n";
# This will print:
# auto_function first
# But I would like