default.txt 339 B

123456789101112131415
  1. #include <iostream>
  2. #define IABS(x) ((x) < 0 ? -(x) : (x))
  3. int main(int argc, char *argv[]) {
  4. /* An annoying "Hello World" example */
  5. for (auto i = 0; i < 0xFFFF; i++)
  6. cout << "Hello, World!" << endl;
  7. char c = '\n';
  8. unordered_map <string, vector<string> > m;
  9. m["key"] = "\\\\"; // this is an error
  10. return -2e3 + 12l;
  11. }