mirror of
https://github.com/opencv/opencv.git
synced 2024-12-15 18:09:11 +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;
|
||
|
}
|