From d6bd174e7bba7f6b002e00dd8528169e7e7ed58e Mon Sep 17 00:00:00 2001 From: Shaun Kerr Date: Mon, 20 May 2019 10:46:44 +1200 Subject: [PATCH] updated readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7528a74..6bed1e9 100644 --- a/README.md +++ b/README.md @@ -6,19 +6,19 @@ tA's Rules Engine for the Neon Genesis Evangelion Trading Card Game. Currently only runs in GHCI -``` +```haskell :load Connect.hs Print.hs Init.hs import Print import Init ``` To print the representation of the initial board state -``` +```haskell printState initBS ``` `conHurt` and `conAttract` are currently the only implemented mechanics -``` +```haskell printState $ conAttract Shinji Asuka initBS printState $ conHurt Asuka Gendo $ conAttract Shinji Asuka initBS ```