gllvm/data/helloworld.c

9 lines
94 B
C
Raw Normal View History

2019-10-20 22:42:26 +02:00
#include <stdio.h>
int main(int argc, char *argv[]) {
fprintf(stdout, "hello world");
}