QP School

Full Version: Getting started with Ruby 3
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Actually there are several ways to get started with Ruby 3.

1. Testing Ruby online

You can type some Ruby code and run it online here.
Version 2.5.1. isn't the latest Ruby version,
but since it's online you don't need to install anything
and it runs on all kinds of devices.

2. Testing Ruby with an IDE

To test Ruby with an IDE you should download the latest Ruby version here.
Please follow the installation instructions to install Ruby either on Windows, Mac or Linux.
Once Ruby is installed correctly you can download a small, lightweight and free IDE here.
Now click on "File" > "New" > file.rb to create a new Ruby file.
You can delete the automatically generated Ruby code and add your own.
Then save it i.e. as untitled.rb and click on the "execute" button to run it.

This way you should have the latest Ruby version (currently 3.0.0),
you can use syntax highlighting, code completion or other cool things,
but you'll have to download and install it on your device.

3. Testing Ruby in the interactive ruby shell

If you have decided for step 2 you can also run Ruby codes in the interactive ruby shell that was installed on your device.
On Windows click on "Click here to search" and type "Interactive Ruby" there.
For Mac or Linux please read the Ruby documentation on how to open it there instead.
Now you can directly write some code and execute it without saving it first.
This way you will also have the latest Ruby version (currently 3.0.0).
It also requires an installation on your device.
There is no syntax highlighting, code completion etc.