Hello, world!

admin · 29.07.2020 20:11 #python
Hello, world!
class World:
    def com(self, x):
        __import__(x)

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

hello, world = Hello(), World()

hello@world.com

Edit from 2026-08-16

But wait! It does not work since Python 3.11 so here we go:

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

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

hello, world = Hello(), World()

hello@world.com

Комментарии

Пока нет комментариев.

Войдите, чтобы комментировать.