in reply to Re: A non-blocking socket operation could not be completed ?
in thread A non-blocking socket operation could not be completed ?
Um, well, I stole that code from this site:
http://developeronline.blogspot.com/2008/10/using-perl-against-facebook-part-i.html
Don't know why "our" is used there.
I do use it myself with Getopt::Std, as I was told that's the best way to declare a variable before it's actually used, e.g.:
use Getopt::Std; use strict; our($opt_i); # "our" allows strict use of this variable without clobbe +ring it getopts('i:');
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: A non-blocking socket operation could not be completed ?
by Marshall (Canon) on May 17, 2016 at 17:58 UTC |