mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-22 19:22:50 -06:00
34 lines
384 B
Plaintext
34 lines
384 B
Plaintext
--# -path=.:prelude
|
|
|
|
abstract GodisUser = {
|
|
|
|
cat
|
|
|
|
S;
|
|
Question;
|
|
Action;
|
|
Answer;
|
|
ShortAns;
|
|
Proposition;
|
|
|
|
|
|
fun
|
|
|
|
greet_S,
|
|
quit_S : S;
|
|
|
|
no_S,
|
|
yes_S : Answer;
|
|
|
|
request_S : Action -> S;
|
|
answer_S : Answer -> S;
|
|
ask_S : Question -> S;
|
|
|
|
shortans_S,
|
|
not_shortans_S : ShortAns -> S;
|
|
not_prop_S : Proposition -> S;
|
|
|
|
request_request_S : Action -> Action -> S;
|
|
|
|
}
|