Skip to content

Instantly share code, notes, and snippets.

@souhe
Created November 20, 2018 20:12
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 souhe/62a60681debddc1a7ab72f92ba893c28 to your computer and use it in GitHub Desktop.
Save souhe/62a60681debddc1a7ab72f92ba893c28 to your computer and use it in GitHub Desktop.
let data = [1, 3, 5, 2, 0, 4 ];
data
|> List.filter(i => i != 0)
|> List.map(i => i * 2)
|> List.map(i => string_of_int(i));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment