Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Ruby Basic Exercises: Get ruby version with patch number

Ruby Basic: Exercise-1 with Solution

Write Ruby program to get ruby version with patch number.

Ruby Code:

puts "Ruby Version: "+RUBY_VERSION
puts "Ruby Patch Level: "+RUBY_PATCHLEVEL.to_s

Output:

Ruby Version: 2.4.2
Ruby Patch Level: 198

Flowchart:

Flowchart: Get ruby version with patch number

Ruby Code Editor:

Contribute your code and comments through Disqus.

Previous: Ruby Basic Exercises
Next: Write a Ruby program to display the current date and time.

What is the difficulty level of this exercise?