main.c 277 B

1234567891011121314151617
  1. /*
  2. * Copyright (C) 2019 Intel Corporation. All rights reserved.
  3. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. */
  5. #include "stdio.h"
  6. void
  7. print_line(char *str);
  8. int
  9. main()
  10. {
  11. print_line("Hello World!");
  12. print_line("Wasm Micro Runtime");
  13. return 0;
  14. }