Initial commit

This commit is contained in:
Yaser
2026-08-13 19:56:46 +03:30
commit de1d57a67b
474 changed files with 43185 additions and 0 deletions

24
test.rb Normal file
View File

@@ -0,0 +1,24 @@
module Mo
MAPPING = { a: 'a', b: 'b' }
@mapping = 'ayza2'
class << self
@mapping_singleton = 'ayza'
def test
a = :a
p MAPPING.dig(a)
p @mapping
end
end
def test2
p MAPPING
end
end
Mo.test
# Mo::test2
p Mo.singleton_class.instance_variables
p Mo.instance_variables