From 61dc8fcd1c74849cc450eba82b12df95f423613c Mon Sep 17 00:00:00 2001 From: Taylor Date: Tue, 14 Jan 2025 03:02:27 -0600 Subject: [PATCH] linting tips --- src/main.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ()