mirror of
https://github.com/tailix/mrubyvisor.git
synced 2025-07-07 19:31:57 -04: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
|