summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--AufgabeFFP1.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/AufgabeFFP1.hs b/AufgabeFFP1.hs
index 705dce1..9c152dc 100644
--- a/AufgabeFFP1.hs
+++ b/AufgabeFFP1.hs
@@ -3,7 +3,7 @@ where
3 3
4-- calculates 2^ with each element of the continuous list 4-- calculates 2^ with each element of the continuous list
5pof2s :: [Integer] 5pof2s :: [Integer]
6pof2s = map (2^) [0,1..] 6pof2s = map (2^) [0..]
7 7
8-- alternate: 8-- alternate:
9-- pof2s :: [Integer] 9-- pof2s :: [Integer]