webvm/examples/ruby/helloWorld.rb
2022-01-31 22:00:49 +01:00

14 lines
175 B
Ruby

=begin
# The famous Hello World
# Program is trivial in
# Ruby. Superfluous:
#
# * A "main" method
# * Newline
# * Semicolons
#
# Here is the Code:
=end
puts "Hello World!"