Skip to content

Instantly share code, notes, and snippets.

@Adzz
Last active June 21, 2019 12:59
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 Adzz/0f1bbffb8eb79de94c637a103e33b153 to your computer and use it in GitHub Desktop.
Save Adzz/0f1bbffb8eb79de94c637a103e33b153 to your computer and use it in GitHub Desktop.
list_1 = [1, 2]
list_2 = [3, 4]
Zip.apply(list_1, list_2, fn x, y -> x + y end) #=> [4, 6]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment