From 5214f2a68117d3964ab79d9bdfe0382546aaa8ed Mon Sep 17 00:00:00 2001 From: Jon Fetter-Degges Date: Tue, 11 Oct 2022 21:49:40 -0400 Subject: [PATCH] One more implementation note --- 55_Life/rust/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/55_Life/rust/README.md b/55_Life/rust/README.md index 7bd5dd22..3cce8366 100644 --- a/55_Life/rust/README.md +++ b/55_Life/rust/README.md @@ -15,6 +15,7 @@ At a command or shell prompt in the `rust` subdirectory, enter `cargo run`. ## Differences from Original Behavior * The simulation stops if all cells die. +* `.` at the beginning of an input line is supported but optional. * Input of more than 66 columns is rejected. Input will automatically terminate after 20 rows. Beyond these bounds, the original implementation would have marked the board as invalid, and beyond 68 cols/24 rows it would have had an out of bounds array access. * The check for the string "DONE" at the end of input is case-independent.