summaryrefslogtreecommitdiff
path: root/devel/emscripten/files/hello_world.c
blob: c653c27ab24c1ae77b70a31fdf5ea4ff11d7e722 (plain) (blame)
1
2
3
4
5
6
7
#include <stdio.h>


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