summaryrefslogtreecommitdiff
path: root/book/examples/chapter2/TicketEng.gf
diff options
context:
space:
mode:
Diffstat (limited to 'book/examples/chapter2/TicketEng.gf')
-rw-r--r--book/examples/chapter2/TicketEng.gf19
1 files changed, 0 insertions, 19 deletions
diff --git a/book/examples/chapter2/TicketEng.gf b/book/examples/chapter2/TicketEng.gf
deleted file mode 100644
index 54e44741d..000000000
--- a/book/examples/chapter2/TicketEng.gf
+++ /dev/null
@@ -1,19 +0,0 @@
-concrete TicketEng of Ticket = {
-
-lincat
- Request, Station = Str ;
-lin
- Ticket X Y =
- ((("I" ++ ("would like" | "want") ++ "to get" |
- ("may" | "can") ++ "I get" |
- "can you give me" |
- []) ++
- "a ticket") |
- []) ++
- "from" ++ X ++ "to" ++ Y ++
- ("please" | []) ;
-
- Hamburg = "Hamburg" ;
- Paris = "Paris" ;
-
-}