Skip to content

Instantly share code, notes, and snippets.

@indatawetrust
Created August 13, 2016 17:01
Show Gist options
  • Save indatawetrust/5d16909b68e21fe61e704daba943ef93 to your computer and use it in GitHub Desktop.
Save indatawetrust/5d16909b68e21fe61e704daba943ef93 to your computer and use it in GitHub Desktop.
array = fn i,j -> i..j |> Enum.to_list end
IO.puts array.(1,5)
# log
# [1,2,3,4,5]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment