fork download
  1. #include <iostream>
  2. class Tile;
  3. class Tile{
  4. public:
  5. void PRINTME() { ::std::cout << "I PRINTED MESELF!\n"; }
  6. };
  7.  
  8. int main()
  9. {
  10. Tile Wall;
  11. Wall.PRINTME();
  12. }
Success #stdin #stdout 0s 3140KB
stdin
Standard input is empty
stdout
I PRINTED MESELF!