diff options
Diffstat (limited to 'mrb_gems/basic_example/mrblib/basic_example.rb')
| -rw-r--r-- | mrb_gems/basic_example/mrblib/basic_example.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mrb_gems/basic_example/mrblib/basic_example.rb b/mrb_gems/basic_example/mrblib/basic_example.rb new file mode 100644 index 0000000..70ee644 --- /dev/null +++ b/mrb_gems/basic_example/mrblib/basic_example.rb @@ -0,0 +1,7 @@ +module BasicExample + class << self + def say_goodbye + puts "Goodbye" + end + end +end |
