Remove unnecessary code

This commit is contained in:
Alex Kotov 2022-11-29 00:03:39 +04:00
parent 43bb89ed99
commit a6b1853851
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
3 changed files with 1 additions and 7 deletions

View File

@ -1 +0,0 @@
puts 'Hello, World! Ruby modules work!'

View File

@ -1,7 +1,5 @@
set timeout=0
menuentry "mrubyvisor" {
multiboot2 /boot/mrubyvisor.multiboot2 Hello, kernel!
module2 /boot/foobar.rb Hello, module foobar!
module2 /boot/qwerty.rb Hello, module qwerty!
multiboot2 /boot/mrubyvisor.multiboot2
}

View File

@ -1,3 +0,0 @@
hello = 'Hello, World!'
works = 'Ruby modules work!'
puts [hello, works].join ' '