1 /* 2 * Copyright (c) 2020 Stephanos Ioannidis <root@stephanos.io> 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 from Console\n"); 13 return 0; 14 } 15