Ruby/rb/heyo.rb

10 lines
185 B
Ruby

puts 'Heyo! Hello world... Option: 1'
'Heyo! Hello world... Option: 2'.each { |s| print s }
class String
def say
puts self
end
end
'Heyo! Hello world... Option: 3'.say