Files
2020-03-23 11:48:41 +01: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;
}