forked from GitHub/gf-core
13 lines
271 B
Plaintext
13 lines
271 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 ;
|
|
}
|