in reply to RE: RE: Re: Use of unitialized variable?
in thread Use of unitialized variable?
One more time:
use strict; use LWP::Simple; print &getHTML('http://www.perlmonks.org'); sub getHTML($) { my $url = shift; my $content = get($url); return getprint($url); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: RE: RE: RE: Re: Use of unitialized variable?
by merlyn (Sage) on Aug 29, 2000 at 05:55 UTC | |
by jeffa (Bishop) on Aug 29, 2000 at 05:59 UTC | |
by merlyn (Sage) on Aug 29, 2000 at 15:01 UTC |