1 /* 2 * Copyright (c) 2020 Stephanos Ioannidis <root@stephanos.io> 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #include <stdio.h> 8 main(void)9 int main(void) 10 { 11 printf("Hello World from Console\n"); 12 return 0; 13 } 14