Returns a boolean as to whether or not Haskell List x is null (Haskell length = 0).
null xExamples
> null []
True
> null ['a']
FalseReturns a boolean as to whether or not Haskell List x is null (Haskell length = 0).
null x> null []
True
> null ['a']
False