mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-15 07:49:31 -06:00
13 lines
224 B
Plaintext
13 lines
224 B
Plaintext
abstract Agenda = Dialogue, Weekday ** {
|
|
|
|
fun
|
|
Day : Kind ;
|
|
Meeting : Kind ;
|
|
Add : Oper2 Meeting Day ;
|
|
Remove : Oper1 Meeting ;
|
|
Interrupt : Oper0 ;
|
|
|
|
day : WDay -> Object Day ;
|
|
|
|
}
|