Hello,
It seems these two syntaxes accomplish the same thing, or are there
differences?
class Foo
class << self
def bar
# ...
end
end
end
compared to...
class Foo
def Foo.bar
# ...
end
end
Cheers,
Kyle