1
0
Fork 0
mirror of https://github.com/tailix/mrubyvisor.git synced 2024-11-11 13:50:47 -05:00
mrubyvisor/rootfs/boot/hello.rb

5 lines
114 B
Ruby
Raw Normal View History

hello = 'Hello, World'
works = 'Ruby modules work'
s = [hello, works].map { |s| "#{s}!" }.join ' '
2022-11-28 15:14:35 -05:00
console_puts s