tiy-houston-q1-rails / day-1

Day 1 Intro to Ruby
0 stars 0 forks source link

Danny Sun - Day 1 #3

Open dannysun2 opened 9 years ago

dannysun2 commented 9 years ago

https://gist.github.com/dannysun725/1facbd5af0637e0903b8

jwo commented 9 years ago

One style note:

 puts movie[:Title] + " was directed by " + movie[:Director] + " and released in " +movie[:Year] + "."

Instead of :Title, we should always use snake-case in Ruby: :title

Otherwise: perfect

dannysun2 commented 9 years ago

Thanks Jesse!