aboutsummaryrefslogtreecommitdiff
path: root/examples/cgol.sloth
diff options
context:
space:
mode:
authorNic Gaffney <gaffney_nic@protonmail.com>2023-07-17 23:00:30 -0500
committerNic Gaffney <gaffney_nic@protonmail.com>2023-07-17 23:00:30 -0500
commit52d6bc8533616dd642c96f8b6e72f459e1b4d465 (patch)
tree31f3dc1f3378151e57f7bc37fa2b4e22ab757661 /examples/cgol.sloth
parentee2133a13d61b3b3fb8fcf88f9c9781debd77d9e (diff)
downloadsloth-52d6bc8533616dd642c96f8b6e72f459e1b4d465.tar.gz
Standard lib rework
Diffstat (limited to 'examples/cgol.sloth')
-rw-r--r--examples/cgol.sloth2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/cgol.sloth b/examples/cgol.sloth
index 6cfe72d..fadb9c7 100644
--- a/examples/cgol.sloth
+++ b/examples/cgol.sloth
@@ -84,7 +84,7 @@ fn display(life: [Int]) {
# if the cell is alive, print
termpos(x, y);
if cval(x, y, life) == 1{
- print("#");
+ print("█");
} else {
print(" ");
}