Rename Conway to Life.
authorSiraaj Khandkar <siraaj@khandkar.net>
Sun, 29 Sep 2013 16:29:42 +0000 (12:29 -0400)
committerSiraaj Khandkar <siraaj@khandkar.net>
Sun, 29 Sep 2013 16:29:42 +0000 (12:29 -0400)
polymorphism/001/src/polymorphism.ml

index 6fc0ba9..3c90972 100644 (file)
@@ -187,7 +187,7 @@ module type RULE = sig
 end
 
 
-module Conway : RULE = struct
+module Life : RULE = struct
   type state = D | A
 
   let state_of_string : (string -> state) = function
@@ -387,7 +387,7 @@ let main () =
   let rows, columns = Or_error.ok_exn Linux_ext.get_terminal_size () in
   let interval = 0.1 in
   let rules =
-    [ (module Conway : RULE)
+    [ (module Life : RULE)
     ; (module ForestFire : RULE)
     ]
   in
This page took 0.019705 seconds and 4 git commands to generate.