Calling class methods

To call a class method (or static method) from an instance method:

class.method()

To call a class method from a class method:

method()
Henning Koch