1
0
forked from GitHub/gf-rgl

add mkV4 to add suffix to some verbs; passive unit tests

This commit is contained in:
Meowyam
2022-02-23 15:09:03 +08:00
parent 066a9f6170
commit 88ae0d5093
4 changed files with 37 additions and 10 deletions
+6
View File
@@ -133,6 +133,12 @@ oper
lin V3 (mkVerb3 v p q)
} ;
mkV4 = overload {
mkV4 : Str -> Str -> V2 = \v2,str ->
lin V2 (mkVerb4 (mkVerb v2 Meng) dirPrep str) ;
mkV4 : V -> Prep -> Str -> V2 = \v,p,str -> lin V2 (mkVerb4 v p str)
} ;
mkVV = overload {
mkVV : Str -> VV = \vv -> lin VV (ss vv)
} ;