Files
comp-syntax-gu-mlt/lab1/grammar/korean/MicroResKor.gf
2026-01-28 14:19:47 -07:00

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
}
}