Merge pull request #17 from shlevy/null-not-reserved

null is a constant added to the base environment, not a reserved word
This commit is contained in:
John Wiegley 2014-09-12 01:56:25 +01:00
commit 7e9b2e534f

View file

@ -82,7 +82,6 @@ reservedNames :: HashSet.HashSet String
reservedNames = HashSet.fromList
[ "let", "in"
, "if", "then", "else"
, "null"
, "assert"
, "with"
, "rec"