mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
84e1b0045c
The following code should work
```ruby
module M
def me
p self
end
module_function :me
end
M.me
```