lied in the last commit, this time its true

This commit is contained in:
Thorn Avery 2021-04-18 14:18:44 +12:00
parent 80e50af6bb
commit f2b0e8fee0

View File

@ -193,7 +193,7 @@ runAutomata :: Space CellState -> Int -> Int -> IO ()
runAutomata s 0 w = putStrLn $ concat $ map show $ boundw w s runAutomata s 0 w = putStrLn $ concat $ map show $ boundw w s
runAutomata s n w = do runAutomata s n w = do
putStrLn $ concat $ map show $ boundw w s putStrLn $ concat $ map show $ boundw w s
runAutomata (step rule3 s) (n - 1) w runAutomata (step rule s) (n - 1) w
main :: IO () main :: IO ()
main = do main = do