From 52d6bc8533616dd642c96f8b6e72f459e1b4d465 Mon Sep 17 00:00:00 2001 From: Nic Gaffney Date: Mon, 17 Jul 2023 23:00:30 -0500 Subject: Standard lib rework --- examples/cgol.sloth | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/cgol.sloth') 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(" "); } -- cgit v1.2.3