'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
+3 -1
View File
@@ -8,7 +8,9 @@ concrete QuestionMay of Question = CatMay ** open
-- determiners, with or without a noun.
lin
-- : IDet -> CN -> IP ; -- which five songs
IdetCN idet cn = NM.DetCN idet cn ** {sp = idet.sp} ;
IdetCN idet cn = NM.DetCN idet cn ** {
sp = \\nf => idet.sp ! nf ++ cn.s ! nf
} ;
-- : IDet -> IP ; -- which five
IdetIP idet = NM.DetNP idet ** {sp = idet.sp};