forked from OSchip/llvm-project
13 lines
170 B
Mathematica
13 lines
170 B
Mathematica
|
/*
|
||
|
* Check that we can compile helloworld
|
||
|
* RUN: llvmc2 %s -o %t
|
||
|
* RUN: ./%t | grep hello
|
||
|
*/
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int main() {
|
||
|
printf("hello\n");
|
||
|
return 0;
|
||
|
}
|