[#8815] Segfault in libc strlen, via rb_str_new2 — "Sean E. Russell" <ser@...>

Howdy,

12 messages 2006/09/09
[#8817] Re: Segfault in libc strlen, via rb_str_new2 — Eric Hodel <drbrain@...7.net> 2006/09/09

On Sep 8, 2006, at 10:10 PM, Sean E. Russell wrote:

Re: Literal inconsistency

From: URABE Shyouhei <shyouhei@...>
Date: 2006-09-04 15:14:24 UTC
List: ruby-core #8791
Hi,

Calamitas wrote:
> Well, immutable is relative:

The term "immutable" is not clearly defined in Ruby.  You may surprise
to know that even nil can be modified.

a = nil
def a.foo
  p self
end
a.foo # => nil


Matz once wrote to me there are no "strictly" immutable objects.

In This Thread