Overall, I enjoyed the experience of going through

the story provided, and with good reason at it reminded me of the old text-based games of
earlier PCs in 80s and 90s. However, and this might be because of how my brain operates, I do not
personally think this is an easier than using a desktop and mouse. For those whose learning style
and thinking methods work in more of a text-based manner, I would argue that this is easily more
efficient for most tasks than using the method I am used to. I prefer a more visual system of organization,
but this works well for layers and computational thinking.
This commit is contained in:
Justin Toombs 2023-07-16 12:09:20 -07:00
parent 893a05876e
commit 9933708922
3 changed files with 5 additions and 4 deletions

1
.log Normal file
View File

@ -0,0 +1 @@
finished the lab at 2023-07-16T12:08:58.709858

6
poetry.lock generated
View File

@ -2,13 +2,13 @@
[[package]] [[package]]
name = "click" name = "click"
version = "8.1.4" version = "8.1.5"
description = "Composable command line interface toolkit" description = "Composable command line interface toolkit"
optional = false optional = false
python-versions = ">=3.7" python-versions = ">=3.7"
files = [ files = [
{file = "click-8.1.4-py3-none-any.whl", hash = "sha256:2739815aaa5d2c986a88f1e9230c55e17f0caad3d958a5e13ad0797c166db9e3"}, {file = "click-8.1.5-py3-none-any.whl", hash = "sha256:e576aa487d679441d7d30abb87e1b43d24fc53bffb8758443b1a9e1cee504548"},
{file = "click-8.1.4.tar.gz", hash = "sha256:b97d0c74955da062a7d4ef92fadb583806a585b2ea81958a81bd72726cbb8e37"}, {file = "click-8.1.5.tar.gz", hash = "sha256:4be4b1af8d665c6d942909916d31a213a106800c47d0eeba73d34da3cbc11367"},
] ]
[package.dependencies] [package.dependencies]

View File

@ -55,7 +55,7 @@ def time_since_chest_was_opened():
if chest_was_opened(): if chest_was_opened():
if treasure_is_present(): if treasure_is_present():
if time_since_chest_was_opened() < 60: if time_since_chest_was_opened() < 600000:
win() win()
else: else:
reset() reset()