Files
gf-core/lib/src/japanese/TextJpn.gf
lizazim 2c371f5f33 JPN
2012-06-10 21:38:10 +00:00

15 lines
316 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
concrete TextJpn of Text = CatJpn ** open ResJpn, Prelude in {
flags coding = utf8 ;
lin
TEmpty = {s = ""} ;
TFullStop phr txt = {s = phr.s ++ "。" ++ txt.s} ;
TQuestMark phr txt = {s = phr.s ++ "" ++ txt.s} ;
TExclMark phr txt = {s = phr.s ++ "" ++ txt.s} ;
}