Last active
September 27, 2015 15:17
-
-
Save tkuriyama/686c1679443fb0288952 to your computer and use it in GitHub Desktop.
Testing GitHub syntax highlighting in F#
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let product = List.fold (*) 1 | |
| let product = List.fold (fun acc x -> acc * x) 1 | |
| let fold1 f items = | |
| List.fold f (List.head items) (List.tail items) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment