Skip Navigation
32 comments
  • I was going through some js code a few months ago and every function in a module had return; as its first line. And that module was imported into 4 or 5 scripts.

  • laughing in #if 0:

     undefined
        
    #include 
    
    int main()
    {
    #if 0
            std::cout << "Look at this" << std::endl;
    #else
            std::cout << "ugly abomination." << std::endl;
    #endif
    }
    
      
  • bonus points if you use a different variable every file so they have to go through and change every instance if they want to make changes

32 comments