From: Siraaj Khandkar Date: Tue, 28 Aug 2012 16:26:07 +0000 (-0400) Subject: A more readable list. X-Git-Url: https://git.xandkar.net/?p=cellular-automata.git;a=commitdiff_plain;h=4eb3be32ce405e69f39573b5e38171764cd0d789 A more readable list. --- diff --git a/005/life.awk b/005/life.awk index 101f66a..0e6fb02 100755 --- a/005/life.awk +++ b/005/life.awk @@ -59,7 +59,7 @@ function get_new_state(state, live_neighbors) { function set_generation(board, gen_id, y, x) { - num_directions = split("N,NE,E,SE,S,SW,W,NW", directions, ","); + num_directions = split("N, NE, E, SE, S, SW, W, NW", directions, ", "); offsets["N" , "x"] = 0; offsets["N" , "y"] = -1;