ryantownsend (owner)

Revisions

gist: 40626 Download_button fork
public
Public Clone URL: git://gist.github.com/40626.git
Embed All Files: show embed
Ruby #
1
2
3
4
5
6
7
8
9
10
11
fruit = ['banana', 'strawberry', 'cherry']
fruit[0]
# "banana"
fruit[2]
# "cherry"
 
fruit = { :banana => 'yuck!', :strawberry => 'yum!', :cherry => 'yummy!' }
fruit[:banana]
# "yuck!"
fruit[:strawberry]
# "yum!"