summaryrefslogtreecommitdiffstats
path: root/src/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/product-mini/app-samples/hello-world-cmake/main.c
blob: b6dfd2802b9726abcd12603381c4c6bdc12b72bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * 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;
}