Ruby Tutorial – Hello World!

Problem Statement

Let’s get started with Ruby!

Go ahead and type the following code in the code-editor:

print "Hello HackerRank!!"

Solution

  
# Enter your code here. Read input from STDIN. Print output to STDOUT
print "Hello HackerRank!!"

Leave a Reply