Skip to content
Snippets Groups Projects
Commit ad38a96e authored by Olivier ABDELNOUR's avatar Olivier ABDELNOUR
Browse files

wip

parent e06dcb1a
No related branches found
No related tags found
No related merge requests found
Pipeline #59981 passed
......@@ -140,7 +140,27 @@ const welcome =
`welcome back ${user.name}.
You have ${messages.length} message${messages.length ? "s" : ""} to read.`;
```
=== "C"
``` c
#include <stdio.h>
int main(void) {
printf("Hello world!\n");
return 0;
}
```
=== "C++"
``` c++
#include <iostream>
int main(void) {
std::cout << "Hello world!" << std::endl;
return 0;
}
```
### Use backquotes instead of quotes <Diy />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment