summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2015-02-08 22:27:08 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2015-02-08 22:27:08 +0100
commitf16f1a981db23a76ff2d68f76f5ef960427e00cc (patch)
treef47a4a8af8e9dd4ae8f3e228f675356651d50180
parentd571ba5387d71ca0e1055ceb09a78b2b030e29c4 (diff)
downloadhaskell-f16f1a981db23a76ff2d68f76f5ef960427e00cc.tar.gz
haskell-f16f1a981db23a76ff2d68f76f5ef960427e00cc.tar.bz2
haskell-f16f1a981db23a76ff2d68f76f5ef960427e00cc.zip
run.sh and applicative things
-rw-r--r--foo.hs15
-rwxr-xr-xrun.sh1
2 files changed, 16 insertions, 0 deletions
diff --git a/foo.hs b/foo.hs
index 0cdf3b6..1565904 100644
--- a/foo.hs
+++ b/foo.hs
@@ -19,3 +19,18 @@ data Bar = Bar Int Int deriving (Eq,Show)
instance Ord Bar where
(Bar _ s1) `compare` (Bar _ s2) = s1 `compare` s2
+
+
+
+
+-- Stuff with applicative
+
+intlist = [1, 5, 6, 8]
+
+func1 x = x * 2
+func2 x = x * 3
+func3 x = x * 5
+
+funcs = [func1, func2, func3]
+
+
diff --git a/run.sh b/run.sh
new file mode 100755
index 0000000..51ba550
--- /dev/null
+++ b/run.sh
@@ -0,0 +1 @@
+ghc -threaded -O raytracer.hs && time ./raytracer +RTS -s