mirror of
https://github.com/tailix/mrubyvisor.git
synced 2024-11-11 13:50:47 -05:00
4 lines
114 B
Ruby
4 lines
114 B
Ruby
hello = 'Hello, World'
|
|
works = 'Ruby modules work'
|
|
s = [hello, works].map { |s| "#{s}!" }.join ' '
|
|
console_puts s
|