💎 Introduction to Ruby

Ruby is a dynamic, open-source programming language with a focus on simplicity and productivity. It has an elegant syntax that's natural to read and easy to write.

🔧 How to Install Ruby

📸 Installation Screens

Ruby Download Page Ruby Installer Setup Ruby Installed Confirmation
💡 Tip: After installing, open your terminal or command prompt and type ruby -v to check if Ruby is installed correctly.

✨ What You Can Do With Ruby

🚀 First Ruby Program

Create a new file named hello.rb and write this code:

puts "Hello, world!"
  

Then run it in your terminal:

ruby hello.rb