fork download
  1. #include <iostream>
  2. struct { void PRINTME() { std::cout << "I PRINTED MESELF!\n"; } } Wall;
  3. int main() { Wall.PRINTME(); }
Success #stdin #stdout 0s 3096KB
stdin
Standard input is empty
stdout
I PRINTED MESELF!