diff options
Diffstat (limited to 'examples/cgol.sloth')
| -rw-r--r-- | examples/cgol.sloth | 2 |
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(" "); } |
