gllvm/data/helloworld.c
2019-10-20 13:42:26 -07:00

9 lines
94 B
C

#include <stdio.h>
int main(int argc, char *argv[]) {
fprintf(stdout, "hello world");
}