added missing files

This commit is contained in:
Krasimir Angelov
2026-04-11 08:45:52 +02:00
parent 6a2cb9ec77
commit 401ac1f954
5 changed files with 39 additions and 5 deletions
+13
View File
@@ -0,0 +1,13 @@
concrete IdiomMkd of Idiom = CatMkd ** open Prelude,ResMkd in {
lin ProgrVP vp = {
present = \\a,n,p => vp.present ! Imperfective ! n ! p ;
aorist = vp.aorist ;
imperfect = \\a,n,p => vp.imperfect ! Imperfective ! n ! p ;
imperative = \\a,n => vp.imperative ! Imperfective ! n ;
participle = {aorist = \\a,gn => vp.participle.aorist ! Imperfective ! gn ;
perfect = \\a => vp.participle.perfect ! Imperfective ;
imperfect = \\a => vp.participle.imperfect ! Imperfective}
} ;
}