aboutsummaryrefslogtreecommitdiff
path: root/hello.c
blob: 67fc9921f10d7a4f356527ad741338e7469d08a5 (plain)
1
2
3
4
5
6
#include <stdio.h>

int main(int argc, char* argv[]) {
  printf("Hello, world!\n");
  return 0;
}