#include <iostream>

struct HelloWorld {
    void operator()() const
    {
        std::cout << "hello world\n";
    }
};

int main() 
{
    HelloWorld{}();
}
