implemented rendering of beads on abacus

This commit is contained in:
2024-08-21 20:34:08 -04:00
parent 475b1ed05c
commit fe9263cfae
2 changed files with 33 additions and 4 deletions

View File

@@ -53,7 +53,13 @@ abacusLeft s =
else ' '
beads :: Abacus -> [(String, String)]
beads = undefined
beads a = map
( \n ->
( replicate (getNumBeads a - n) 'O'
, replicate n 'O'
)
)
(rungList a)
abacusRight :: AppState -> [String]
abacusRight = undefined