Skip to content

Instantly share code, notes, and snippets.

@jdibiccari
Last active August 29, 2015 14:01
Show Gist options
  • Save jdibiccari/d051c715f2275373e296 to your computer and use it in GitHub Desktop.
Save jdibiccari/d051c715f2275373e296 to your computer and use it in GitHub Desktop.
blog_post_3
Submarine = Struct.new(:captain, :sub_name) do
def destination?
puts "Headed to the Aquadome"
end
end
scimitar2 = Submarine.new("Lauren", "Scimitar 2")
scimitar2.captain
#=> Lauren
scimitar2.destination?
#=> Headed to the Aquadome
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment