I have a quick, simple question....
If you want to know how many elements are in an array, you can set a scalar = to an array, i.e. $scalar = @array.
If you want to know the number of pairs in a hash, you can use keys (%hash).
What is going on when you set a scalar = a hash? The output is in the form of A / B where A and B are both integers. I am having trouble finding documentation on this.