From: Nuralanur@... Date: 2006-02-08T03:35:38+09:00 Subject: Re: ruby-nuby bytes question -------------------------------1139337319 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Dear Steven, there are no integers in Ruby, only Fixnum and Bignum. The conversion is automatical. Matz, Ruby's creator, says that you should use these without caring about their internal representation. You can find some detail on this website: _http://www.oreillynet.com/ruby/blog/2006/01/the_ruby_value_1.html_ (http://www.oreillynet.com/ruby/blog/2006/01/the_ruby_value_1.html) If you want to know how many bytes are used to represent a number, you can use puts 1.size => 4 bytes on my machine puts 1.class => Fixnum puts (2**3000).size => 376 bytes on my machine. puts (2**3000).class => Bignum Best regards, Axel -------------------------------1139337319--