Class: BasicObject

Defined in:
mruby/mrblib/00class.rb

Direct Known Subclasses

Object

Instance Method Summary collapse

Instance Method Details

#!=(other) ⇒ Object



2
3
4
5
6
7
8
# File 'mruby/mrblib/00class.rb', line 2

def !=(other)
  if self == other
    false
  else
    true
  end
end