in reply to differences between eq "" and !
but$scalar eq "" => (implies) !$scalar
but that can't be transformed naïvely to a conjunction (with or or ||) without warnings for some values.!$scalar => (implies) one of: ($scalar eq "") ($scalar == 0) (defined $scalar eq "")
|
|---|