1
0
Fork 0
mirror of https://github.com/tailix/mrubyvisor.git synced 2025-07-14 19:41:56 -04:00

Fix Ruby module

This commit is contained in:
Alex Kotov 2022-11-28 23:14:44 +04:00
parent c91a39aa9c
commit 02205d777f
Signed by: kotovalexarian
GPG key ID: 553C0EBBEB5D5F08

View file

@ -1,3 +1,3 @@
hello = 'Hello, World'
works = 'Ruby modules work'
puts [hello, works].map { |s| "#{s}!" }.join ' '
hello = 'Hello, World!'
works = 'Ruby modules work!'
puts [hello, works].join ' '