(Fao) add particle to verbs e.g. "fara út"

This commit is contained in:
Inari Listenmaa
2026-04-01 16:27:14 +02:00
parent 1e436d84a1
commit e825d92233
4 changed files with 231 additions and 115 deletions
+3 -1
View File
@@ -501,7 +501,9 @@ oper
mkV = overload {
mkV : Str -> V = regV; -- Nonfinite
mkV : Str -> Str -> V = reg2V -- Nonfinite Indicative;Pres;('PSg', P2)
mkV : Str -> Str -> V = reg2V ; -- Nonfinite Indicative;Pres;('PSg', P2)
mkV : V -> Str -> V -- particle verb
= \v,p -> v ** {particle = p}
} ;
mkVV : V -> VV = \v -> lin VV v ;