summaryrefslogtreecommitdiff
path: root/Main.hs
diff options
context:
space:
mode:
authorFrederick Yin <fkfd@fkfd.me>2023-01-08 20:11:30 +0800
committerFrederick Yin <fkfd@fkfd.me>2023-01-08 20:11:30 +0800
commitc50c43698af9b4291f1e63154d19123ed89b8f10 (patch)
tree76a2b30bd23c888903310d944e3ba0d002560629 /Main.hs
parent1e336424e1c661303fed2a4d4e58915bf267bb55 (diff)
beginRounds and beginTurn are better names
Diffstat (limited to 'Main.hs')
-rw-r--r--Main.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Main.hs b/Main.hs
index 1992399..7e66efa 100644
--- a/Main.hs
+++ b/Main.hs
@@ -9,7 +9,7 @@ import Game (Game(..),
discardPile,
prompt,
dealCards,
- nextRound,
+ beginRounds,
)
import Player (Player(..))
import qualified Player as P
@@ -33,5 +33,5 @@ main = do
, discardPile = discard
}
- nextRound 1 $ dealCards 6 game
+ beginRounds 1 $ dealCards 6 game
print ()