Subject: Re: Constant in Ruby.
From: Charlie <peckcharlie yahoo.com>
Date: Sat, 6 May 2006 01:14:17 +0900
References: 190758190761190765190770
In-reply-to: 190770
Thank you everyone for your input. I got this simple example to share:
A = 10 => 10
X = A.freeze => 10
A = 20 => 20
X => 10
--
Posted via http://www.ruby-forum.com/.