From: Amélia Coutard-Sander Date: Fri, 13 Dec 2024 01:38:00 +0000 (+0100) Subject: Noms plus propres pour les automates X-Git-Url: https://git.ameliathe1st.gay/?a=commitdiff_plain;h=8f1facb5a101000dd51005ad108a319d0efd02f8;p=cells.git Noms plus propres pour les automates --- diff --git a/automata/automata/life.ml b/automata/automata/life.ml index 69267bf..0324885 100644 --- a/automata/automata/life.ml +++ b/automata/automata/life.ml @@ -13,7 +13,7 @@ * with this program. If not, see . *) -let name = "life" +let name = "Conway's Game of Life" type t = Dead | Alive diff --git a/automata/automata/wireworld.ml b/automata/automata/wireworld.ml index 9ca3451..14ab5d7 100644 --- a/automata/automata/wireworld.ml +++ b/automata/automata/wireworld.ml @@ -13,7 +13,7 @@ * with this program. If not, see . *) -let name = "wireworld" +let name = "Wireworld" type t = Empty | Conductor | Head | Tail