forked from GitHub/comp-syntax-gu-mlt
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"
|
|
} ;
|
|
}
|