mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 13:09:33 -06:00
11 lines
328 B
Plaintext
11 lines
328 B
Plaintext
-- Simple questions and answers, in present tense.
|
|
|
|
abstract Questions = {
|
|
cat
|
|
Phrase ; Entity ; Action ;
|
|
fun
|
|
Who : Action -> Entity -> Phrase ; -- who chases X
|
|
Whom : Entity -> Action -> Phrase ; -- whom does X chase
|
|
Answer : Entity -> Action -> Entity -> Phrase ; -- X chases Y
|
|
}
|