mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
6c25b5896a
Just like `#append_features`, we remove `#prepend_features` and implemented `#prepend` directly in C.
15 lines
164 B
Ruby
15 lines
164 B
Ruby
class BasicObject
|
|
def !=(other)
|
|
if self == other
|
|
false
|
|
else
|
|
true
|
|
end
|
|
end
|
|
end
|
|
|
|
class Module
|
|
# 15.2.2.4.11
|
|
alias attr attr_reader
|
|
end
|