summaryrefslogtreecommitdiff
path: root/scripts/lib/bsp/substrate/target/arch/layer/recipes-example/example/example-recipe-0.1/helloworld.c
blob: 71f2e46b4e68b01980c4017e13ac5a907b6edc5b (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>

int main(int argc, char **argv)
{
    printf("Hello World!\n");

    return 0;
}