/* * Check that we can compile helloworld * RUN: llvmc %s -o %t * RUN: %abs_tmp | grep hello */ #include int main() { printf("hello\n"); return 0; }