Allowing for an empty package name.

This commit is contained in:
Matthew-Mosior 2024-07-26 14:20:51 -04:00
parent 8e24f12e60
commit ba560de6c3

View File

@ -112,6 +112,6 @@ interactive = do
True => isIdentTrailing xs
checkPackageName : List Char -> Bool
checkPackageName [] = False
checkPackageName [] = True
checkPackageName (x::xs) = isIdentStart x &&
isIdentTrailing xs