summaryrefslogtreecommitdiff
path: root/examples/tutorial/resource-foods/LexFoods.gf
blob: 875427b773b563e93774611f08a23c6a0cb6cbb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
interface LexFoods = open Syntax in {
  oper
    wine_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 ;

    eat_V2 : V2 ;
    drink_V2 : V2 ;
    pay_V2 : V2 ;
    lady_N : N ;
    gentleman_N : N ;
}