From 6e3941f2d8259b0f78d7cb3a5150fffe8fb479ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9E=97=E5=8D=9A=E4=BB=81=20Buo-ren=20Lin?= Date: Thu, 21 Aug 2025 21:03:50 +0800 Subject: [PATCH] Drop redundant space in game_of_life.rb MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: ๆž—ๅšไป(Buo-ren Lin) --- trapcc/game_of_life.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trapcc/game_of_life.rb b/trapcc/game_of_life.rb index 65d67be..d2eb1b9 100644 --- a/trapcc/game_of_life.rb +++ b/trapcc/game_of_life.rb @@ -94,7 +94,7 @@ def step_instructions(p, next_inst) bl,b,br = n(-1,-1), n(0,-1), n(1,-1) # above here, :counter has the number of live neighbours - a= dec_x_ifnot_y("#{name} cdec TL ",p,:counter,tl,"#{name}-0") + a=dec_x_ifnot_y("#{name} cdec TL ",p,:counter,tl,"#{name}-0") a=dec_x_ifnot_y("#{name} cdec T",p,:counter,t,a) a=dec_x_ifnot_y("#{name} cdec TR",p,:counter,tr,a) a=dec_x_ifnot_y("#{name} cdec L",p,:counter,l,a)