[#4479] Requesting addition to IRB (configurable standard output) — Sascha Ebach <se@...>

Hello,

13 messages 2005/02/24
[#4482] Re: Requesting addition to IRB (configurable standard output) — Sam Roberts <sroberts@...> 2005/02/25

Quoting se@digitale-wertschoepfung.de, on Fri, Feb 25, 2005 at 01:22:34AM +0900:

[#4483] Re: Requesting addition to IRB (configurable standard output) — Eric Hodel <drbrain@...7.net> 2005/02/25

On 24 Feb 2005, at 19:51, Sam Roberts wrote:

[#4488] Re: Requesting addition to IRB (configurable standard output) — Sam Roberts <sroberts@...> 2005/02/26

Quoting drbrain@segment7.net, on Sat, Feb 26, 2005 at 02:43:31AM +0900:

[#4489] Re: Requesting addition to IRB (configurable standard output) — Eric Hodel <drbrain@...7.net> 2005/02/26

On 25 Feb 2005, at 16:03, Sam Roberts wrote:

[ ruby-Patches-1469 ] [doc patch->object.c] instance_variable_set will create an instance var

From: noreply@...
Date: 2005-02-07 16:43:33 UTC
List: ruby-core #4383
Patches item #1469, was opened at 2005-02-07 11:40
You can respond by visiting: 
http://rubyforge.org/tracker/?func=detail&atid=1700&aid=1469&group_id=426

Category: Ruby1.8
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Sam Roberts (sam)
Assigned to: Nobody (None)
Summary:  [doc patch->object.c] instance_variable_set will create an instance var

Initial Comment:
This wasn't clear from the docs, or the example, but I tried it:
        
$ irb < ivarset.rb
>> class Fred
>>   def initialize(p1, p2)
>>     @a, @b = p1, p2
>>   end
>> end
=> nil
>> fred = Fred.new('cat', 99)
=> #<Fred:0x2fd764 @a="cat", @b=99>
>> fred.instance_variable_set(:@a, 'dog')
=> "dog"
>> fred.instance_variable_set(:@c, 'cat')
=> "cat"
>> fred.inspect
=> "#<Fred:0x2fd764 @a=\dog\, @b=99, @c=\cat\>" 
>>


----------------------------------------------------------------------

You can respond by visiting: 
http://rubyforge.org/tracker/?func=detail&atid=1700&aid=1469&group_id=426

In This Thread

Prev Next