Skip to content

Comment#

To command code, we can use 2 methods: * Single line * Multi lines

Single line#

1
puts "Hello World" # This line will output the text "Hello World"

Multi line#

1
2
3
4
5
=begin
The next line will output the text:
    "Hello World"
=end
puts "Hello World"