3 Commitit 47cfb4352e ... 92e965ad5e

Tekijä SHA1 Viesti Päivämäärä
  Jonathan Landrum 92e965ad5e Merge branch 'master' of https://notabug.org/jonlandrum/google-billboard-challenge 6 vuotta sitten
  Jonathan Landrum 63dcb0dee0 Merge branch 'master' of https://notabug.org/jonlandrum/google-billboard-challenge 6 vuotta sitten
  Jonathan Landrum 049eea344c Adding e.hs for calculating e to arbitrary precision 6 vuotta sitten
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      e.hs

+ 1 - 1
e.hs

@@ -6,4 +6,4 @@ taylor n = if n < 1 then 1 else (1 / factorial n) + taylor (n - 1)
 
 main::IO()
 
-main = putStrLn(showCReal 1000 (taylor 1000))
+main = putStrLn(showCReal 1000 (taylor 100))