summaryrefslogtreecommitdiff
path: root/gf-book/examples/chapter2/Ticket.gf
blob: f3f2dd851a7bbb8e29a486a5dd8fc43d2e695e44 (plain)
1
2
3
4
5
6
7
8
9
10
abstract Ticket = {

flags startcat = Request ;
cat
  Request ; Station ;
fun 
  Ticket : Station -> Station -> Request ;
  Hamburg, Paris : Station ;

}