• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * Check that we can compile helloworld
3 * RUN: llvmc %s -o %t
4 * RUN: %abs_tmp | grep hello
5 */
6
7#include <stdio.h>
8
9int main() {
10    printf("hello\n");
11    return 0;
12}
13