presentations/highlight-js/test/detect/cpp/default.txt

15 lines
300 B
Text
Raw Permalink Normal View History

2018-12-07 08:48:05 -06:00
#include <iostream>
int main(int argc, char *argv[]) {
/* An annoying "Hello World" example */
for (auto i = 0; i < 0xFFFF; i++)
cout << "Hello, World!" << endl;
char c = '\n';
unordered_map <string, vector<string> > m;
m["key"] = "\\\\"; // this is an error
return -2e3 + 12l;
}