11 lines
165 B
C
11 lines
165 B
C
|
/**
|
||
|
RUN: clang %s -o %S/hello-world && %S/hello-world | filecheck %s
|
||
|
CHECK: Hello world
|
||
|
*/
|
||
|
|
||
|
#include <stdio.h>
|
||
|
int main() {
|
||
|
printf("Hello bora\n");
|
||
|
return 0;
|
||
|
}
|