Files
2022-05-06 01:58:53 +08:00

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;
}