Created
December 10, 2020 00:33
-
-
Save armandofox/c3ea17d28f213c3e08e5503da3f210cf to your computer and use it in GitHub Desktop.
block_example.rb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def print_movies(movie_list) | |
movie_list.each do |m| | |
puts "#{m.title} (rated: #{m.rating})" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment