This commit is contained in:
2026-01-28 14:19:47 -07:00
parent 65a023a1f1
commit f85bb5ef54
2 changed files with 4 additions and 2 deletions
+3 -1
View File
@@ -1,11 +1,13 @@
resource MicroResKor = open Prelude in {
param
Regularity = Regular | PieupIrregular ;
VerbType = Action | Descriptive ;
oper
Noun : Type = {s : Str} ;
Verb : Type = {
reg : Regularity ;
stem : Str
stem : Str ;
t : VerbType
}
}