examples of dialogue system grammars

This commit is contained in:
aarne
2006-05-16 13:07:41 +00:00
parent cd276cbebe
commit 0629d29111
18 changed files with 304 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
abstract Agenda = Dialogue, Weekday ** {
fun
Day : Kind ;
Meeting : Kind ;
Add : Oper2 Meeting Day ;
Remove : Oper1 Meeting ;
Interrupt : Oper0 ;
day : WDay -> Object Day ;
}