From 4c23fbfb0395ae6ef3c127d3004bb46709dc2974 Mon Sep 17 00:00:00 2001 From: Nathan McRae Date: Thu, 7 Aug 2025 22:04:37 -0700 Subject: [PATCH] Add import for <= --- src/TernaryGraph.purs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TernaryGraph.purs b/src/TernaryGraph.purs index e7a15c2..009ba5c 100644 --- a/src/TernaryGraph.purs +++ b/src/TernaryGraph.purs @@ -1,6 +1,6 @@ module TernaryGraph where -import Prelude ( discard, class Monoid, class Semigroup, Unit, ($), (<<<), (<>), (*), (+), (-), (/)) +import Prelude (discard, class Monoid, class Semigroup, Unit, ($), (<=), (<<<), (<>), (*), (+), (-), (/)) import Data.Array ((!!), concat, cons, mapWithIndex, range) import Data.Functor (map)