mirror of
https://github.com/leaningtech/webvm.git
synced 2026-08-31 01:34:10 +08:00
15 lines
175 B
Ruby
15 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!"
|
|
|