1 /* 2 * Copyright (c) 2012-2014 Wind River Systems, Inc. 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #include <zephyr/kernel.h> 8 #include <zephyr/sys/printk.h> 9 main(void)10 int main(void) 11 { 12 printk("Hello World! %s\n", CONFIG_BOARD); 13 return 0; 14 } 15