#### Circular Hashes This example shows hashes that make a circular reference. ```show.rb```: ```ruby require 'debug_helper' hash_0 = {} hash_1 = {} hash_0.store(:foo, hash_1) hash_1.store(:bar, hash_0) DebugHelper.show(hash_0, 'My circular hashes') ``` The output shows details of the hashes. The circular reference is not followed. ```show.yaml```: ```yaml --- Hash (message='My circular hashes'): size: 1 default: default_proc: Pair 0: Key: Symbol: to_s: foo size: 3 encoding: !ruby/encoding US-ASCII Value: Hash: size: 1 default: default_proc: Pair 0: Key: Symbol: to_s: bar size: 3 encoding: !ruby/encoding US-ASCII Value: Hash {:foo=>{:bar=>{...}}} ```