mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-17 16:59:34 -06:00
32 lines
406 B
Plaintext
32 lines
406 B
Plaintext
--# -path=.:../../prelude
|
|
|
|
abstract Lang =
|
|
Rules,
|
|
Clause,
|
|
Structural,
|
|
Basic,
|
|
Time,
|
|
Country,
|
|
Math
|
|
|
|
** {
|
|
|
|
flags startcat=Phr ;
|
|
|
|
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 ;
|
|
|
|
}
|