mirror of
https://github.com/GrammaticalFramework/gf-rgl.git
synced 2026-06-07 06:06:31 -06:00
11 lines
250 B
Plaintext
11 lines
250 B
Plaintext
concrete TextGre of Text = CatGre ** {
|
|
flags coding=utf8 ;
|
|
|
|
|
|
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} ;
|
|
|
|
} |