Update README.md

This commit is contained in:
WH64 2023-10-30 20:45:30 +09:00 committed by GitHub
parent 062b32a38e
commit 32a7df0afd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,9 +1,10 @@
```c ```c
#include <stdio.h> #include <stdio.h>
int main(int argc, char **argv) { int main(int argc, char **argv)
printf("Hello, World!\n"); {
return 0; printf("Hello, World!\n");
return 0;
} }
``` ```
```bash ```bash