I make a simple Ruby class as follows in a Ruby script:
class Rock::Stone
end
When I run the script at the command prompt, I get:
`<main>': uninitialized constant Rock (NameError)
Why is this? I thought scope resolution operators were allowed in class defs?