mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2024-11-26 15:32:05 +00:00
17f62ad472
Apply clang-format for core/shared and product-mini files
17 lines
277 B
C
17 lines
277 B
C
/*
|
|
* Copyright (C) 2019 Intel Corporation. All rights reserved.
|
|
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
*/
|
|
|
|
#include "stdio.h"
|
|
|
|
void
|
|
print_line(char *str);
|
|
|
|
int
|
|
main()
|
|
{
|
|
print_line("Hello World!");
|
|
print_line("Wasm Micro Runtime");
|
|
return 0;
|
|
} |