This commit is contained in:
2026-01-28 09:17:06 -07:00
parent 65a023a1f1
commit f85bb5ef54
2 changed files with 4 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ concrete MicroLangKor of MicroLang = open MicroResKor, Prelude in {
lincat lincat
Utt = {s : Str} ; Utt = {s : Str} ;
S = {s : Str} ; S = {s : Str} ;
VP = {verb : Verb ; compl : Str} ; ---s special case of Mini VP = {verb : Verb ; compl : Str} ; ---s special case of Mini
Comp = {s : Str} ; Comp = {s : Str} ;

View File

@@ -1,11 +1,13 @@
resource MicroResKor = open Prelude in { resource MicroResKor = open Prelude in {
param param
Regularity = Regular | PieupIrregular ; Regularity = Regular | PieupIrregular ;
VerbType = Action | Descriptive ;
oper oper
Noun : Type = {s : Str} ; Noun : Type = {s : Str} ;
Verb : Type = { Verb : Type = {
reg : Regularity ; reg : Regularity ;
stem : Str stem : Str ;
t : VerbType
} }
} }