Logo

Programming-Idioms

History of Idiom 54 > diff from v29 to v30

Edit summary for version 30 by nebulus:
New Caml implementation by user [nebulus]

Version 29

2019-02-01, 06:30:00

Version 30

2019-09-26, 14:18:17

Idiom #54 Compute sum of integers

Calculate the sum s of integer list x.

Idiom #54 Compute sum of integers

Calculate the sum s of integer list x.

Code
List.fold_left (+) 0 l