summaryrefslogtreecommitdiff
path: root/70b-73/70b.hs
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2017-05-31 00:32:37 -0400
committerDeterminant <ted.sybil@gmail.com>2017-05-31 00:32:37 -0400
commit34d130005be780756b9c6915a7c188a756e03882 (patch)
tree4a5b1ca11e87086adc081e428561b3230abb38cb /70b-73/70b.hs
parente0fff7c4014512bf88b23136dbbb426d9d9b7511 (diff)
finish vol 8
Diffstat (limited to '70b-73/70b.hs')
-rw-r--r--70b-73/70b.hs3
1 files changed, 3 insertions, 0 deletions
diff --git a/70b-73/70b.hs b/70b-73/70b.hs
new file mode 100644
index 0000000..dbeb5b5
--- /dev/null
+++ b/70b-73/70b.hs
@@ -0,0 +1,3 @@
+data Tree a = Node a [Tree a] deriving (Eq, Show)
+
+-- Haskell is type-safe, so there is no solution.