1
0
forked from GitHub/gf-rgl

tuning resource API

This commit is contained in:
aarne
2005-02-06 09:52:19 +00:00
parent a89dc272e2
commit 67c8ef5e9b
33 changed files with 2061 additions and 1432 deletions

25
resource/abstract/Lang.gf Normal file
View File

@@ -0,0 +1,25 @@
abstract Lang =
Rules,
Clause,
Structural,
Basic,
Time,
Country
** {
fun
-- Mount $Time$.
AdvDate : Date -> Adv ;
AdvTime : Time -> Adv ;
NWeekday : Weekday -> N ;
PNWeekday : Weekday -> PN ;
-- Mount $Country$.
PNCountry : Country -> PN ;
ANationality : Nationality -> A ;
NLanguage : Language -> N ;
}