'how many' has correct standalone form and plural noun

This commit is contained in:
Meowyam
2021-11-15 13:49:39 +08:00
committed by Inari Listenmaa
parent b8a1a72cca
commit a0d397bed4
4 changed files with 7 additions and 4 deletions

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 ;
} ;
--------------------------------------------------------------------------------