X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=funcdeps%2Ftest.icl;h=56022e9f2f4ffa982fdf825a462d35aa0a237233;hb=HEAD;hp=3f9bb2175c40f3afae8a3425b4086e3082db3678;hpb=e93ca347c979046dff47bdd1f12c582a6bf70cac;p=clean-tests.git diff --git a/funcdeps/test.icl b/funcdeps/test.icl deleted file mode 100644 index 3f9bb21..0000000 --- a/funcdeps/test.icl +++ /dev/null @@ -1,9 +0,0 @@ -module test - -import StdEnv - -class fmap t :: (a -> b) (t a) -> t b - -instance fmap ((,)a) where fmap f (a, b) = (a, f b) - -Start = fmap inc (42, 37)