Files
comp-syntax-gu-mlt/lab1/grammar/korean/MicroResKor.gf
2026-02-07 18:57:59 -07:00

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