Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
So I tried putting "use 5.10;" in my program and it said:" "state" is available only if the "state" feature is enabl +ed or if it is prefixed with "CORE::". The "state" feature is en +abled automatically with a "use v5.10" (or higher) declaration i +n the current scope. "
so it looks liek the "state" documentation is telling me to use version 5 by 100!"Perl v5.100.0 required (did you mean v5.10.0?)--this is only v5.30.0, + stopped at bin/zclient line 5."
The manpage for IO::Socket::INET has this in it. I didn't even try running it because it has the bareword of udp there which I'm pretty sure is illegal?
$sock = IO::Socket::INET->new( PeerPort => 9999, PeerAddr => inet_ntoa(INADDR_BR +OADCAST), Proto => udp, LocalAddr => 'localhost', Broadcast => 1 ) or die "Can't bind : $@\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: What do you do with typos in the documentation?
by Corion (Patriarch) on Jan 29, 2021 at 06:52 UTC | |
|
Re: What do you do with typos in the documentation?
by GrandFather (Saint) on Jan 29, 2021 at 07:26 UTC | |
by dsheroh (Monsignor) on Jan 30, 2021 at 12:34 UTC | |
|
Re: What do you do with typos in the documentation?
by hippo (Archbishop) on Jan 29, 2021 at 09:55 UTC | |
|
Re: What do you do with typos in the documentation?
by tobyink (Canon) on Jan 29, 2021 at 17:46 UTC | |
|
Re: What do you do with typos in the documentation?
by stevieb (Canon) on Jan 29, 2021 at 13:31 UTC |