diff options
author | Edoardo La Greca | 2025-08-26 16:45:51 +0200 |
---|---|---|
committer | Edoardo La Greca | 2025-08-26 16:45:51 +0200 |
commit | 523c7a99f8644a9d6cb39759ecc74b18b0385c2a (patch) | |
tree | 5b74e89a44fc57c2ba8377cc11f2147d7da07952 | |
parent | 8076d92345884143ce50a942c301255e954c34c4 (diff) |
change indentation in exercise 3
-rw-r--r-- | lec06/Fibonacci.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lec06/Fibonacci.hs b/lec06/Fibonacci.hs index 2b6e343..9993169 100644 --- a/lec06/Fibonacci.hs +++ b/lec06/Fibonacci.hs @@ -21,7 +21,7 @@ streamToList :: Stream a -> [a] streamToList (Cons a s) = a : streamToList s instance Show a => Show (Stream a) where - show s = show $ take 20 $ streamToList s + show s = show $ take 20 $ streamToList s -- Exercise 4 |