diff --git a/src/main.hs b/src/main.hs index a6c4f4d..5d2ac76 100644 --- a/src/main.hs +++ b/src/main.hs @@ -17,4 +17,4 @@ main = do -- This is an example of applying one function (head exampleGenome produces intAdd) to the exampleState: assert ([3, 3] == map unpackIntGene (int (head exampleGenome exampleState))) pure () -- This function applies an entire genome to the starting state, and produces the final state: - assert ([6] == (map unpackIntGene (int (interpretGenome exampleState exampleGenome)))) pure () + assert ([6] == map unpackIntGene (int (interpretGenome exampleState exampleGenome))) pure ()