This draft deletes the entire topic.
Examples
-
This example assumes Ruby is installed.
Place the following in a file named
hello.rb
:puts 'Hello World'
From the command line, type the following command to execute the Ruby code from the source file:
$ ruby hello.rb
This should output:
Hello World
The output will be immediately displayed to the console. Ruby source files don't need to be compiled before being executed. The Ruby interpreter compiles and executes the Ruby file at runtime.
-
You can add an interpreter directive (shebang) to your script. Create a file called
hello_world.rb
and write the following script:#!/usr/bin/env ruby # file: hello_world.rb puts 'Hello World!'
Change the script executable permissions. Now, you do not need to call the Ruby interpreter directly from the command line when you run your script.
$ chmod u+x hello_world.rb $ ./hello_world.rb
-
-
Alternatively, you can use the Interactive Ruby Shell (IRB) to immediately execute the Ruby statements you previously wrote in the Ruby file.
Start an IRB session by typing:
$ irb
Then enter the following command:
puts "Hello World"
This results in the following console output (including newline):
Hello World
If you don't want to start a new line, you can use
print
:print "Hello World"
-
Run the command below in a shell after installing Ruby. This shows how you can execute simple Ruby programs without creating a Ruby file:
ruby -e 'puts "Hello World"'
You can also feed a Ruby program to the interpreter's standard input. One way to do that is to use a here document in your shell command:
ruby <<END puts "Hello World" END
-
Tk is the standard graphical user interface (GUI) for Ruby. It provides a cross-platform GUI for Ruby programs.
Example code:
require "tk" TkRoot.new{ title "Hello World!" } Tk.mainloop
The result:
Step by Step explanation:
require "tk"
Load the tk package.
TkRoot.new{ title "Hello World!" }
Define a widget with the title
Hello World
Tk.mainloop
Start the main loop and display the widget.
-
Overview
Create a new file named
my_first_function.rb
Place the following code inside the file:
def hello_world puts "Hello world!" end hello_world()
Now, from a command line, execute the following:
ruby my_first_function.rb
The output should be:
Hello world!
Explanation
def
is a keyword that tells us that we'redef
-ining a method - in this case,hello_world
is the name of our method.puts "Hello world!"
puts
(or pipes to the console) the stringHello world!
end
is a keyword that signifies we're ending our definition of thehello_world
method
Remarks
Ruby is a multi-platform open-source, dynamic object-oriented interpreted language, designed to be simplistic and productive. It was created by Yukihiro Matsumoto (Matz) in 1995.
According to its creator, Ruby was influenced by Perl, Smalltalk, Eiffel, Ada, and Lisp. It supports multiple programming paradigms, including functional, object-oriented, and imperative. It also has a dynamic type system and automatic memory management.
Topic Outline
- Hello World
- Hello World with Shebang (Unix-like operating systems only)
- Hello World from IRB
- Hello World without source files
- Hello World with tk
- My First Function
Versions
Sign up or log in
Save edit as a guest
Join Stack Overflow
Using Google
Using Facebook
Using Email and Password
We recognize you from another Stack Exchange Network site!
Join and Save Draft