in reply to Variable and object scoping
#!/usr/bin/perl my $t=new HTML::Template; foo($t); print $t->output; sub foo { my $f=shift; $f->param(foo=>baz); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Variable and object scoping
by dakkar (Hermit) on Nov 26, 2002 at 21:30 UTC | |
by bbfu (Curate) on Nov 26, 2002 at 23:59 UTC |