/* ... */
#include <stdio.h>
#include "sdkconfig.h"
#include "func.h"
void app_main(void)
{
printf("This app is built for running on: " CONFIG_EXAMPLE_PRODUCT_NAME "\n");
/* ... */
func();
printf("See README.md for building and running other app configurations.\n");
}{ ... }