From: 7stud -- Date: 2008-03-15T01:54:13+09:00 Subject: Re: odd stack error Roger Pack wrote: > Note that I > do have one function call that is > > large_hash_like_20000_members.each{|key, value| ...} > > Is that all going on the stack as an array, maybe? > This is on OS X. > Thanks! This works fine for me on OS X and ruby 1.8.2: def test h = Hash.new 1.upto(100_000) do |i| h[i] = i end puts h[100_000] h.each do |key, val| puts key, val end end test -- Posted via http://www.ruby-forum.com/.