Skip to content

Instantly share code, notes, and snippets.

@HelloThisIsFlo
Last active January 26, 2017 08:21
Show Gist options
  • Save HelloThisIsFlo/d9dc6985e4f17f95f4a0f44a58d37ff4 to your computer and use it in GitHub Desktop.
Save HelloThisIsFlo/d9dc6985e4f17f95f4a0f44a58d37ff4 to your computer and use it in GitHub Desktop.
Application
def multiply(a, b), do: a * b
def main(args) do
{a, b} = read_from_command_line(args)
result = multiply(a, b)
print_human_readable_result({a, b}, result)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment