@garybernhardt >> class X; def a; self.b = 42; end; private; def b=(x); end; end
=> nil
>> X.new.a
=> 42 #lol
@oscardelben private has different rules on whether or not "self" is permitted as a receiver for setters vs all other methods
You can add location information to your Tweets, such as your city or precise location, from the web and via third-party applications. You always have the option to delete your Tweet location history. Learn more
@oscardelben private has different rules on whether or not "self" is permitted as a receiver for setters vs all other methods