Skip to content

Instantly share code, notes, and snippets.

@MonkeyIsNull
Created November 4, 2015 02:46
Show Gist options
  • Save MonkeyIsNull/02b43cd673a228d57fc0 to your computer and use it in GitHub Desktop.
Save MonkeyIsNull/02b43cd673a228d57fc0 to your computer and use it in GitHub Desktop.
defmodule Modfuncs do
def modelx(%{:name => name, :droid => true}) do
name <> "-NG"
end
def modelx(%{:name => name, :droid => false}) do
name
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment