interpreter.c 191 B

12345678910
  1. // RUN: clang-interpreter %s | FileCheck %s
  2. // REQUIRES: native, examples
  3. int printf(const char *, ...);
  4. int main() {
  5. // CHECK: {{Hello world!}}
  6. printf("Hello world!\n");
  7. return 0;
  8. }