Remove some files I accidentally added.
authorJose Pedro Magalhaes <jpm@cs.uu.nl>
Fri, 29 Apr 2011 16:49:00 +0000 (18:49 +0200)
committerJose Pedro Magalhaes <jpm@cs.uu.nl>
Fri, 29 Apr 2011 16:51:03 +0000 (18:51 +0200)
tmp/Main [deleted file]
tmp/Main.hs [deleted file]

diff --git a/tmp/Main b/tmp/Main
deleted file mode 100755 (executable)
index 51772c1..0000000
Binary files a/tmp/Main and /dev/null differ
diff --git a/tmp/Main.hs b/tmp/Main.hs
deleted file mode 100644 (file)
index 7b9c7c6..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-{-# LANGUAGE FlexibleContexts, UndecidableInstances, StandaloneDeriving #-}
-{-# LANGUAGE TypeSynonymInstances, FlexibleInstances, DeriveRepresentable #-}
-{-# LANGUAGE Generics #-}
-
-module Main where
-
-import GHC.Generics
-
-data Tree a = Leaf | Node a (Tree a) (Tree a) deriving Representable0
-
-instance Representable0 Char
-instance (Representable0 (Tree a)) => Show (Tree a)
-
--- deriving instance Representable0 (Tree a)
-
-tree1, tree2 :: Tree Char
-tree1 = Node 'a' Leaf  Leaf
-tree2 = Node 'c' tree1 tree1
-
-main = print tree2