I'm trying to figure out the following: what the difference between this
class Car
@@count = 1
end
and this
class Car
count = 1
end
I understand that @@ is used to define a class variable, but isn't any variable declared within a class considered a variable within that class' scope?