Test: Difference between revisions
Jump to navigation
Jump to search
AndrewBack (talk | contribs) (Created page with "<source lang="js"> console.log('Some JavaScript code'); </source>") |
AndrewBack (talk | contribs) No edit summary |
||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
<source lang=" | ==Code== | ||
<source lang="c"> | |||
#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; | |||
} | |||
</source> | </source> | ||
==Math== | |||
<math> | |||
x + y | |||
x \implies y | |||
</math> |
Latest revision as of 11:28, 8 September 2015
Code
#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; }
Math