Name: Anonymous 2018-05-14 13:11
null
-- useful tool or a catastrophe? null
-- useful tool or a catastrophe? Useful tool if the programmer checks for nullsWalking on the freeway is a reasonable way of transport if you keep checking for approaching trucks.
data Maybe a = Just a | Nothing
defined($var) == !isnull($var) # Always true
!defined($var) && empty($var) # Always false
!defined($var) && isnull($var) # Always true
empty($var) && isnull($var) # Always false