Skip to content

Instantly share code, notes, and snippets.

@fee1good
Last active March 23, 2017 21:16
Show Gist options
  • Save fee1good/891ff36439b948356b8045e5d76ce1af to your computer and use it in GitHub Desktop.
Save fee1good/891ff36439b948356b8045e5d76ce1af to your computer and use it in GitHub Desktop.
movie = ARGV[0]
g_movies = ["Matrix","HP"]
b_movies = ["Titanic"]
if g_movies.include?(movie)
p "#{movie} is a good movie!"
elsif b_movies.include?(movie)
p "#{movie} is a bad movie!"
else
p "Need to watch #{movie}."
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment