mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -06:00
18 lines
270 B
Plaintext
18 lines
270 B
Plaintext
abstract Query = {
|
|
|
|
flags startcat=Question ;
|
|
|
|
cat
|
|
Answer ; Question ; Object ;
|
|
|
|
fun
|
|
Even : Object -> Question ;
|
|
Odd : Object -> Question ;
|
|
Prime : Object -> Question ;
|
|
Number : Int -> Object ;
|
|
|
|
Yes : Answer ;
|
|
No : Answer ;
|
|
}
|
|
|