Skip to content

Instantly share code, notes, and snippets.

@viebel
Created October 5, 2017 20:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save viebel/de19a9c8827f887d1f9ae4568decb0de to your computer and use it in GitHub Desktop.
Save viebel/de19a9c8827f887d1f9ae4568decb0de to your computer and use it in GitHub Desktop.
Sigma in reason
let rec sigma f s =>
switch s {
| [] => 0
| [x, ...l] => f x + sigma f l
};
let () = Js.log (sigma (fun x => x * x) [1, 2, 3]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment