default.txt 300 B

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