This website works better with JavaScript
Accueil
Explorer
Aide
Connexion
CNI
/
HaskellCourse
Suivre
3
Voter
0
Fork
0
Fichiers
Tickets
0
Pull Requests
0
Wiki
Parcourir la source
Fix the foldable sum for integers
DricomDragon
il y a 5 ans
Parent
7b891cd3c7
commit
6816698882
1 fichiers modifiés
avec
1 ajouts
et
0 suppressions
Vue séparée
Afficher les stats Diff
1
0
fold.hs
+ 1
- 0
fold.hs
Voir le fichier
@@ -1,3 +1,4 @@
-- Exercice from slide 46
+fsum::[Integer] -> Integer
fsum = foldl (+) 0