mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-20 02:09:32 -06:00
16 lines
327 B
Plaintext
16 lines
327 B
Plaintext
abstract Restaurant = Database ** {
|
|
|
|
fun
|
|
Restaurant, Bar : Noun ;
|
|
French, Italian, Indian, Japanese : Property ;
|
|
address, phone, priceLevel : Feature ;
|
|
Cheap, Expensive : Comparison ;
|
|
|
|
WhoRecommend : Name -> Phras ;
|
|
WhoHellRecommend : Name -> Phras ;
|
|
|
|
|
|
-- examples of restaurant names
|
|
LucasCarton : Name ;
|
|
} ;
|