niggle
This is more annoying than important, I was just browsing through some code and found this snippet :
After much troubled searching and experimenting im still not able to tell what that "next" statement is for, it doesnt appear to be the same as perls, nor an alias for continue or break. Its bugging me by sitting smugly there without me knowing what it does.
Its probably obvious and im just looking at it from the wrong angle or something.
while(!$quit) {
if (($connection = socket_accept($sock)) < 0) {
next;
}
After much troubled searching and experimenting im still not able to tell what that "next" statement is for, it doesnt appear to be the same as perls, nor an alias for continue or break. Its bugging me by sitting smugly there without me knowing what it does.
Its probably obvious and im just looking at it from the wrong angle or something.
