This commit is contained in:
Jacob Signorovitch 2025-01-14 13:21:50 -05:00
parent 9d1394da51
commit 44705d2ea2

View File

@ -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);
}
```