On Apr 7, 2005, at 11:29 AM, john_b_andrews / yahoo.com wrote: > In the following code example, constructing hash1 works fine, > but constructing hash2 gives me a hash with only one key: [snip working example] > hash2 = { > "key1" => <<EOF > value1 > EOF, > "key2" => <<EOF > value2 > EOF > } Try changing that too: hash2 = { "key1" => <<EOF, value1 EOF "key2" => <<EOF value2 EOF } Hope that helps. James Edward Gray II