llvm-6502/test/LLVMC/hello.m
2008-11-25 21:38:12 +00:00

13 lines
169 B
Objective-C

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