Analysis and implementation of the Singleton Design Pattern
Singleton is a creational design pattern that lets you ensure that a class has only one instance, while providing a global access point to this instance.
python main.py
Singleton works, both variables contain the same instance
├── main.py