in reply to Re: Variable scalar creation.
in thread Variable scalar creation.

undef is converted to the empty string when comparing it to a string. Give it a try:

print "ne" while(undef eq '');
hth