14 lines
175 B
Ruby
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!"
|
|
|