[#3479] Missing .document files for ext/ libraries — Brian Candler <B.Candler@...>

The ri documentation for zlib, strscan and iconv doesn't get built by 'make

12 messages 2004/10/06

[#3492] Re: ANN: Free-form-operators patch — Markus <markus@...>

> In message "Re: ANN: Free-form-operators patch"

15 messages 2004/10/11
[#3493] Re: ANN: Free-form-operators patch — Yukihiro Matsumoto <matz@...> 2004/10/11

Hi,

[#3495] Re: ANN: Free-form-operators patch — Markus <markus@...> 2004/10/12

On Mon, 2004-10-11 at 16:16, Yukihiro Matsumoto wrote:

[#3561] 1.8.2 - what can we do to help? — Dave Thomas <dave@...>

Folks:

23 messages 2004/10/26
[#3562] Re: 1.8.2 - what can we do to help? — Yukihiro Matsumoto <matz@...> 2004/10/27

Hi,

Re: [BUG] Small issues with Symbols

From: jim@...
Date: 2004-10-27 14:03:59 UTC
List: ruby-core #3574
* Florian Gro<florgro@gmail.com> [2004-10-27 22:57:01 +0900]:

> 5) Inconsistency between :$0 and :$1? The first one is valid, but the 
> latter isn't.

Could be because $0 has a value and $1 is nil.

irb(main):001:0> $0
=> "irb"
irb(main):002:0> $1
=> nil
irb(main):003:0> :$0
=> :$0
irb(main):004:0> :$1
SyntaxError: compile error
(irb):4: syntax error
        from (irb):4
irb(main):005:0> :"#$0"
=> :irb
irb(main):006:0> :"#$1"
ArgumentError: interning empty string
        from (irb):6


-- 
Jim Freeze


In This Thread