Skip to content

Instantly share code, notes, and snippets.

@victorarias
Created August 10, 2013 03:33
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 victorarias/6198944 to your computer and use it in GitHub Desktop.
Save victorarias/6198944 to your computer and use it in GitHub Desktop.
class PodiumPosition
# .. behavior .. #
def to_int
@race_position
end
end
position = PodiumPosition.new(1)
prizes = [ "orange", "apple", "corn" ]
puts "Congrats, you won #{prizes[position]}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment