Skip to content

Instantly share code, notes, and snippets.

@Wigny
Last active July 12, 2024 01:34
Show Gist options
  • Save Wigny/99a0357d7b9e6d838594f48dfa6ff229 to your computer and use it in GitHub Desktop.
Save Wigny/99a0357d7b9e6d838594f48dfa6ff229 to your computer and use it in GitHub Desktop.
defmodule Test do
def str_to_int(str) do
Enum.reduce(String.to_charlist(str), 0, &(&1 - ?0 + &2 * 10))
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment