mirror of
https://github.com/GrammaticalFramework/comp-syntax-gu-mlt.git
synced 2026-05-01 06:02:49 -06:00
12 lines
203 B
Plaintext
12 lines
203 B
Plaintext
resource MicroResKor = open Prelude in {
|
|
param
|
|
Regularity = Regular | PieupIrregular ;
|
|
|
|
oper
|
|
Noun : Type = {s : Str} ;
|
|
Verb : Type = {
|
|
reg : Regularity ;
|
|
stem : Str
|
|
}
|
|
}
|