in reply to Re: A first attempt
in thread A first attempt
It's called a version string. Any "number" with more than one decimal point is converted to the corresponding characters. This is deprecated, but all's fair in obfuscation.
There's no "IP address" type in Perl. What are you doing with the IP address? If you need a packed IP address, 1.2.3.4 will work, but the accepted way to do this isIf you want the string "1.2.3.4" then use quotation marks.use Socket; $a = inet_aton("1.2.3.4");
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: A first attempt
by zerogeek (Monk) on Jun 20, 2006 at 01:22 UTC |