1 2 3 4 5 6 7 8 9 10 11 12
//{We have to include I/O includes : #include <iostream> //{Then, we can define the main function : int main(int argc, char** argv){ int value = 4; //{Some printing : std::cout << "Hello world ! " << value << std::endl; //{The end of the function return 0; }