Re: How to redefine an autoload sub.

2006-04-16 Thread Jaime Murillo
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

How to redefine an autoload sub.

2006-04-13 Thread perl
#!/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