mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-11 13:59:31 -06:00
17 lines
371 B
Plaintext
17 lines
371 B
Plaintext
abstract Restaurant = Database ** {
|
|
|
|
fun
|
|
Restaurant, Bar : Category ;
|
|
French, Italian, Indian, Japanese : Property ;
|
|
address, phone, priceLevel : Feature ;
|
|
Cheap, Expensive : Comparison ;
|
|
|
|
WhoRecommend : Name -> Query ;
|
|
WhoHellRecommend : Name -> Query ;
|
|
|
|
-- examples of restaurant names
|
|
LucasCarton : Name ;
|
|
LaCoupole : Name ;
|
|
BurgerKing : Name ;
|
|
} ;
|