Skip to content

Instantly share code, notes, and snippets.

@shankardevy
Created July 14, 2017 14:00
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 shankardevy/fb4c12fe493ffdc41fe78614b72398ca to your computer and use it in GitHub Desktop.
Save shankardevy/fb4c12fe493ffdc41fe78614b72398ca to your computer and use it in GitHub Desktop.
defmodule Mango.Catalog do
alias Mango.Catalog.Product
def list_products do
product1 = %Product{ name: "Tomato", price: 50 }
product2 = %Product{ name: "Apple", price: 100 }
[product1, product2]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment