tomato-testing/other/docker/esp32/bootstrap/hello_main.cc

5 lines
158 B
C++
Raw Normal View History

#include <stdio.h>
// Bootstrap main. Only writes hello world. See ../main/ for the real thing.
extern "C" void app_main(void) { printf("Hello world!\n"); }