mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-10 13:29:32 -06:00
17 lines
254 B
Plaintext
17 lines
254 B
Plaintext
interface LexFood = open Syntax in {
|
|
|
|
oper
|
|
wine_N : N ;
|
|
beer_N : N ;
|
|
pizza_N : N ;
|
|
cheese_N : N ;
|
|
fish_N : N ;
|
|
fresh_A : A ;
|
|
warm_A : A ;
|
|
italian_A : A ;
|
|
expensive_A : A ;
|
|
delicious_A : A ;
|
|
boring_A : A ;
|
|
|
|
}
|