1
0
forked from GitHub/gf-core
Files
gf-core/lib/src/mongolian/TextMon.gf

11 lines
230 B
Plaintext

concrete TextMon of Text = CatMon ** {
flags coding=utf8 ;
lin
TEmpty = {s = []} ;
TFullStop p t = {s = p.s ++ "." ++ t.s} ;
TQuestMark p t = {s = p.s ++ "?" ++ t.s} ;
TExclMark p t = {s = p.s ++ "!" ++ t.s} ;
}