Created
December 1, 2017 08:14
-
-
Save zacck-zz/8899489331db00121fc22c3c3e05204a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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