diff --git a/README.md b/README.md index 6695fe4..68f7638 100644 --- a/README.md +++ b/README.md @@ -32,4 +32,11 @@ while (*inp == ' ' || *inp == '\t') inp++; ## Comment Style -In comments, when mentioning things *in* the code, use backticks (\`\`). +In comments, use markdown. + +```C +// Print `var`. +void print(char* var) { + printf("%s\n", var); +} +```