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

int main(int, char**) {
  printf("hello, world\n");
  return 0;
}