forked from GitHub/comp-syntax-gu-mlt
16 lines
328 B
Plaintext
16 lines
328 B
Plaintext
resource MicroResKor = open Prelude in {
|
|
param
|
|
Regularity = Regular | PieupIrregular ;
|
|
VerbType = Action | Descriptive ;
|
|
|
|
oper
|
|
Noun : Type = {s : Str} ;
|
|
Verb : Type = {
|
|
reg : Regularity ;
|
|
stem : Str ;
|
|
t : VerbType
|
|
} ;
|
|
Verb2 : Type = { v : Verb } ;
|
|
Adjective : Type = Verb ;
|
|
}
|