Subject: [ruby-talk:03289] Re: BUG or something?
From: Dave Thomas <Dave thomases.com>
Date: 12 Jun 2000 08:29:42 -0500
References: 328132833287
In-reply-to: Wayne Scott's message of "Mon, 12 Jun 2000 06:07:49 -0700"
Wayne Scott <wscott / ichips.intel.com> writes:
> Does this work?
>
> #!/usr/bin/ruby -w
>
> $/.freeze # prevent changing from defaults
That freezes the object referenced by the $/ variable. Variables
themselves cannot be frozen.
Dave