1
0
forked from GitHub/gf-core

examples/test is moved to testsuite

This commit is contained in:
krasimir
2009-05-20 11:25:00 +00:00
parent b6ce113041
commit 352ac74b0f
12 changed files with 0 additions and 0 deletions

View File

@@ -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" ;
}