2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-01 21:40:24 +00:00
cheat.sheets/sheets/_ruby/hello

11 lines
305 B
Plaintext
Raw Normal View History

2017-06-04 11:23:28 +00:00
# to install: ruby is usually already installed
# if not, install it this way:
# (Debian/Ubuntu) apt-get install ruby
# (Fedora/CentOS) yum install ruby
# to execute: ruby hello.rb
puts "Hello world!"
# or
$stdout.puts "Hello world!"
# or
STDOUT.write "Hello world!\n"