forked from GitHub/comp-syntax-gu-mlt
11 lines
215 B
Plaintext
11 lines
215 B
Plaintext
resource MicroResKor = open Prelude in {
|
|
param
|
|
VForm = VPresent | VPast ;
|
|
|
|
oper
|
|
Noun : Type = {s : Str} ;
|
|
Verb : Type = {s : VForm => Str} ;
|
|
Verb2 : Type = Verb ;
|
|
Adjective : Type = Verb ;
|
|
}
|