summaryrefslogtreecommitdiff
path: root/package/helloworld/src/helloworld.c
blob: 02f468f1fbd2d7a38f0478797f984f2224672b9d (plain)
1
2
3
4
5
6
#include <stdio.h>

int main() {
  printf("Hello World! (C)\n");
  return 0;
}