assimp/contrib/tinyusdz/tinyusdz_repo/sandbox/filecheck/ctests/01-pass.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;
}