summaryrefslogtreecommitdiffstats
path: root/1/1.c
blob: 99e74bf7b399703cbf33125d8be94b1850ebeb47 (plain)
1
2
3
4
5
6
7
#include <stdio.h>

/* prints the famous "hello, world" string */
int main(int argc, char *argv[]) {
  printf("hello, world\n");
  return 0;
}