Hello, world!

admin, 29 июля 2020 г. 20:11


class World:
    def com(self, x):
        __import__(x)

class Hello:
    def __matmul__(self, x):
        x('__hello__')

hello, world = Hello(), World()

hello@world.com