mirror of
https://github.com/GrammaticalFramework/gf-rgl.git
synced 2026-06-12 16:40:11 -06:00
9 lines
232 B
Plaintext
9 lines
232 B
Plaintext
concrete TextSlo of Text = CatSlo ** open ResSlo in {
|
|
|
|
lin
|
|
TEmpty = {s = []} ;
|
|
TFullStop x xs = {s = x.s ++ "." ++ xs.s} ;
|
|
TQuestMark x xs = {s = x.s ++ "?" ++ xs.s} ;
|
|
TExclMark x xs = {s = x.s ++ "!" ++ xs.s} ;
|
|
}
|