Thumbnail

mins/hello-world.git

Clone URL: https://git.buni.party/mins/hello-world.git

Viewing file on branch master

1#include <stdio.h>
2
3int main(int argc, char **argv) {
4 (void) argc;
5 (void) argv;
6
7 printf("Hello, world!\n");
8
9 return 0;
10}
11