summaryrefslogtreecommitdiff
path: root/testsuite/runtime/paraphrase/CityEng.gf
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/runtime/paraphrase/CityEng.gf')
-rw-r--r--testsuite/runtime/paraphrase/CityEng.gf16
1 files changed, 16 insertions, 0 deletions
diff --git a/testsuite/runtime/paraphrase/CityEng.gf b/testsuite/runtime/paraphrase/CityEng.gf
new file mode 100644
index 000000000..39a0974c8
--- /dev/null
+++ b/testsuite/runtime/paraphrase/CityEng.gf
@@ -0,0 +1,16 @@
+concrete CityEng of City = {
+
+lincat S, City, Country, Adj = Str ;
+
+lin
+ PredIn ci co = ci ++ "is in" ++ co ;
+ PredAdj ci ad = ci ++ "is" ++ ad ;
+ Capital co = "the capital of" ++ co ;
+ CountryAdj ad = "the" ++ ad ++ "country" ;
+ Stockholm = "Stockholm" ;
+ Helsinki = "Helsinki" ;
+ Sweden = "Sweden" ;
+ Finland = "Finland" ;
+ Swedish = "Swedish" ;
+ Finnish = "Finnish" ;
+}