b4ee283b23
I believe I have multiple other snippets and attempts scattered across /tmp, ~/programming, and other directories. Again, I created these files and others before the mono-repo.
11 lines
235 B
Haskell
11 lines
235 B
Haskell
data Tree a = Node a [Tree a] deriving (Show)
|
|
|
|
withRoot :: [a] -> [Tree a]
|
|
withRoot xs = xs |> toThing |> fmap buildTree
|
|
|
|
buildTree :: (a, [a])
|
|
|
|
|
|
toTree :: [a] -> Tree a
|
|
toTree [x] = Node x []
|
|
toTree [x | xs] = Node x (toTree xs)
|