Skip to content

Instantly share code, notes, and snippets.

@ravelll
Created May 24, 2013 03:05
Show Gist options
  • Save ravelll/5641039 to your computer and use it in GitHub Desktop.
Save ravelll/5641039 to your computer and use it in GitHub Desktop.
ruby on rails tutorial Chapter4 exercise3
person1 = {first:"coca",last:"cola"}
person2 = {first:"ginger",last:"ale"}
person3 = {first:"dr.",last:"pepper"}
params = {}
params[:father] = person1
params[:mother] = person2
params[:child] = person3
puts params[:father][:first]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment