in reply to Re: Equivalency of Code
in thread Equivalency of Code
vs$x = 3; $x++; print $x;
...would be more accurate.$x = 3; $x += 1; print $x;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Equivalency of Code
by DrHyde (Prior) on Feb 08, 2005 at 10:39 UTC | |
by Anonymous Monk on Feb 08, 2005 at 10:57 UTC |