Files
comp-syntax-gu-mlt/old-labs/lab2/wikipedia-2022/Countries.gf
Arianna Masciolini 3d9659d987 cp labs to old-labs
2025-03-21 11:39:09 +01:00

17 lines
416 B
Plaintext

abstract Countries = Facts, CountryNames ** {
fun
-- using CNames
cName : CName -> Name ;
-- basic properties
capital_Attribute : Attribute ;
area_Attribute : Attribute ;
population_Attribute : Attribute ;
continent_Attribute : Attribute ;
currency_Attribute : Attribute ;
-- specialized expressions for properties
populationFact : CName -> Int -> Fact ;
continentFact : CName -> CName -> Fact ;
}