'how many' has correct standalone form and plural noun

This commit is contained in:
Meowyam
2021-11-15 13:49:39 +08:00
parent 7daf14378d
commit 4394c8f979
4 changed files with 7 additions and 4 deletions
+2 -1
View File
@@ -115,11 +115,12 @@ oper
n = NoNum num ;
} ;
mkIdet : Str -> Number -> Bool -> Determiner = \str, num, isPre -> mkDet str num ** {
mkIdet : Str -> Str -> Number -> Bool -> Determiner = \str, standalone, num, isPre -> mkDet str num ** {
pr = case isPre of {True => str ; False => [] } ;
-- if isPre is True, then: "berapa kucing"
s = case isPre of { False => str ; True => [] };
sp = \\_ => standalone ;
} ;
--------------------------------------------------------------------------------