Skip to content

Instantly share code, notes, and snippets.

@Prigin
Last active September 23, 2019 16:09
Show Gist options
  • Save Prigin/d238cc585a47f941cd0b373d117f1994 to your computer and use it in GitHub Desktop.
Save Prigin/d238cc585a47f941cd0b373d117f1994 to your computer and use it in GitHub Desktop.
mkdev task
movie = ARGV[0]
list = {"Titanic" => "Titanic is a bad movie",
"Matrix" => "Matrix is a good movie"}
if movie
res = list[movie]
if res
puts res
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