mirror of
https://github.com/GrammaticalFramework/comp-syntax-gu-mlt.git
synced 2026-04-29 21:22:51 -06:00
10 lines
181 B
Plaintext
10 lines
181 B
Plaintext
resource HangulCodingRes = {
|
|
flags coding=utf8 ;
|
|
oper
|
|
coding : Str -> Str
|
|
= \s -> case s of {
|
|
"가" => "SYLLABLES" ;
|
|
"가" => "JAMO"
|
|
} ;
|
|
}
|