Ruby
Problem 01
Hello HackerRank!
print the sentence Hello HackerRank!!
Solution
print "Hello HackerRank!!"
Problem 02
Everything is an Object
Everything is an object in Ruby. For instance, if you type print self
in the code-editor, Ruby treats self
as the object in which it is currently reffered to. Give it a try!
Solution
print self
main