Created
February 21, 2018 17:44
-
-
Save Nursultan91/eb7052b011fa274ec3e322476c4e1c13 to your computer and use it in GitHub Desktop.
Первое задание по квесту
This file contains 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
if ARGV.include? "Titanic" | |
puts "Titanic is a bad movie" | |
elsif ARGV.include? "Matrix" | |
puts "Matrix is a good movie" | |
else | |
puts "Haven't seen #{ARGV} yet" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment