Skip to content
Related Articles
Open in App
Not now

Related Articles

How to install Ruby Programming Language on Manjaro Linux?

Improve Article
Save Article
Like Article
  • Last Updated : 02 Aug, 2022
Improve Article
Save Article
Like Article

Ruby is an open-source, dynamic, cross-platform, object-oriented, general-purpose programming language. It was developed by Yukihiro Matsumoto in the mid-1990s in Japan. Everything in Ruby is an object except the blocks but there are replacements for those as well, i.e procs and lambda. The language is based on many other languages, such as Perl, Lisp, Smalltalk, Eiffel, and Ada. To know more please visit Ruby Tutorial. Let’s discuss how to install the Ruby Programming Language in Manjaro Linux. We will also see how to use the ruby compiler to execute a ruby script.

Installation of Ruby Language in Manjaro Linux

Step 1: Update and upgrade your system.

$ sudo pacman -Syu

 

 

 

Step 2: Now, install Ruby using Pacman.

$ sudo pacman -S ruby

 

 

Step 3: Confirm if Ruby was installed correctly.

$ ruby -v

 

Step 4: We will now create a simple ruby program that outputs Geeks for Geeks.

 

Ruby




puts "Geeks For Geeks"


Step 5: Finally, compile the newly created ruby file.

$ ruby test.rb

 

My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!