Skip to content

Instantly share code, notes, and snippets.

@zacck-zz
Created December 1, 2017 08:14
Show Gist options
  • Save zacck-zz/8899489331db00121fc22c3c3e05204a to your computer and use it in GitHub Desktop.
Save zacck-zz/8899489331db00121fc22c3c3e05204a to your computer and use it in GitHub Desktop.
defmodule SomeMap do
Use Collision
def collide(asteroid, spaceship) do
IO.puts "An asteroid collided with a spaceship"
end
def collide(spaceship, asteroid) do
IO.puts "A spaceship collided with an asteroid"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment