blob: 1cda9c3a3405eafd52a0061cea0486c34b403c8d [file] [log] [blame]
Mikhail Glushenkoved205692008-05-06 17:24:54 +00001/*
2 * Check that we can compile helloworld
Mikhail Glushenkovc7e56fe2008-11-25 21:38:12 +00003 * RUN: llvmc %s -o %t
Mikhail Glushenkoved205692008-05-06 17:24:54 +00004 * RUN: ./%t | grep hello
5 */
6
7#include <stdio.h>
8
9int main() {
10 printf("hello\n");
11 return 0;
12}