saasbook

block_example_2.rb

Jan 9th, 2013
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.17 KB | None | 0 0
  1. def print_movies(movie_list)
  2.   movie_list.each do |m|
  3.     puts "#{m.title} #{separator} #{m.rating}"  # === FAILS!! ===
  4.   end
  5. end
  6. separator = '=>'
  7. print_movies(movies) # FAILS!
Add Comment
Please, Sign In to add comment