Skip to content

Instantly share code, notes, and snippets.

@Prigin
Created September 23, 2019 16:54
Show Gist options
  • Save Prigin/ddbc8983bf3e53d9161d202d3fe9ab76 to your computer and use it in GitHub Desktop.
Save Prigin/ddbc8983bf3e53d9161d202d3fe9ab76 to your computer and use it in GitHub Desktop.
mkdev
movie = ARGV[0]
goodlist = ["Braveheart", "Matrix", "Lord os the Rings"]
badlist = ["Twilight", "Titanic"]
if movie
if goodlist.include?(movie)
puts "#{movie} is pretty good."
elsif badlist.include?(movie)
puts "#{movie} is not worth watching."
else
puts "Haven't seen #{movie} yet"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment