We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I trying to run this game http://docs.idris-lang.org/en/latest/effects/hangman.html I faced next thing. When type of game is
game : Eff () [MYSTERY (Running (S g) w), STDIO] [MYSTERY NotRunning, STDIO]
code is compiled. But if I change it to
game : Eff () [STDIO, MYSTERY (Running (S g) w)] [STDIO, MYSTERY NotRunning]
the compiler does not like it anymore.
It looks to me like it can be the same problem. Sorry if I've missed something. Source code is attached. MysteryWord2.txt
Originally posted by @andreykl in #1837 (comment)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I trying to run this game http://docs.idris-lang.org/en/latest/effects/hangman.html I faced next thing. When type of game is
code is compiled. But if I change it to
the compiler does not like it anymore.
It looks to me like it can be the same problem. Sorry if I've missed something. Source code is attached.
MysteryWord2.txt
Originally posted by @andreykl in #1837 (comment)
The text was updated successfully, but these errors were encountered: