mirror of
https://gitcode.com/gh_mirrors/es/esp32-opencv.git
synced 2025-08-14 18:50:49 +08:00
15 lines
184 B
C++
15 lines
184 B
C++
#include <iostream>
|
|
|
|
/**
|
|
* @function main
|
|
* @brief Main function
|
|
*/
|
|
int main( void )
|
|
{
|
|
//! [hello_world]
|
|
std::cout << "Hello World!";
|
|
//! [hello_world]
|
|
|
|
return 0;
|
|
}
|