1
0
forked from GitHub/gf-core

split the testsuite to different directories for compiler, runtime and libraries

This commit is contained in:
krasimir
2009-06-13 13:54:06 +00:00
parent 4df8a263eb
commit 8ae43ac855
19 changed files with 5 additions and 5 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" ;
}