This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* General form | |
Command (parameters*)\n | |
* General errors | |
ERR_INVALID_SEQUENCE 2 | |
ERR_INVALID_COMMAND 4 | |
* Commands | |
JOIN | |
Resp: OK [GO | WAIT] GAME_NUMBER |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add a b = a + b | |
turboDrop n xs = if n <= 0 || null xs | |
then xs | |
else turboDrop (n -1)(tail xs) | |
fu = print "abc" | |
data Phones = Iphone | Htc_one |
OlderNewer