From 02205d777fa314fc8621cb1d01480d7ed2e01641 Mon Sep 17 00:00:00 2001 From: Alex Kotov Date: Mon, 28 Nov 2022 23:14:44 +0400 Subject: [PATCH] Fix Ruby module --- rootfs/boot/qwerty.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rootfs/boot/qwerty.rb b/rootfs/boot/qwerty.rb index 55ca796..66bd943 100644 --- a/rootfs/boot/qwerty.rb +++ b/rootfs/boot/qwerty.rb @@ -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 ' '