summaryrefslogtreecommitdiff
path: root/lec07
diff options
context:
space:
mode:
authorEdoardo La Greca2025-09-19 20:42:55 +0200
committerEdoardo La Greca2025-09-19 20:42:55 +0200
commitc2ae9e01876fdd5c0b0515399bd17eefa827a4a9 (patch)
tree7514e6664c85146a9a20866ebc9b7fff0539c64a /lec07
parent1fc527b516e5c6a7ecc9928b003b2b18cd94d178 (diff)
move Buffer module import to correct module
Diffstat (limited to 'lec07')
-rw-r--r--lec07/JoinList.hs4
-rw-r--r--lec07/Scrabble.hs1
2 files changed, 3 insertions, 2 deletions
diff --git a/lec07/JoinList.hs b/lec07/JoinList.hs
index 5e1949f..4726de2 100644
--- a/lec07/JoinList.hs
+++ b/lec07/JoinList.hs
@@ -1,7 +1,9 @@
+{-# LANGUAGE FlexibleInstances, TypeSynonymInstances #-}
module JoinList where
-import Sized
+import Buffer
import Scrabble
+import Sized
data JoinList m a = Empty
| Single m a
diff --git a/lec07/Scrabble.hs b/lec07/Scrabble.hs
index 278d405..68dc55f 100644
--- a/lec07/Scrabble.hs
+++ b/lec07/Scrabble.hs
@@ -1,6 +1,5 @@
module Scrabble where
-import Buffer
import Data.Char
import Data.List
import Data.Maybe