Create a separate hello world C++ app for Zephyr. Signed-off-by: Christopher Friedt <cfriedt@meta.com>
14 lines
194 B
C++
14 lines
194 B
C++
/*
|
|
* Copyright (c) 2023, Meta
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <iostream>
|
|
|
|
int main(void)
|
|
{
|
|
std::cout << "Hello, C++ world! " << CONFIG_BOARD << std::endl;
|
|
return 0;
|
|
}
|