forked from GitHub/comp-syntax-gu-mlt
14 lines
262 B
Plaintext
14 lines
262 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
|
|
}
|
|
}
|