about summary refs log blame commit diff
path: root/universe.py
blob: 2d859e8331bf4cbfac42dfe0b639a345a7f74c1f (plain) (tree)
1
2
3
4
5
6
7
8







                                                          
class Universe():
    def __init__(self, name: str, G: float, plank: float):
        self.name = name
        self.G = G
        self.plank = plank

    def __str__(self):
        return "kuu"