12345678910
void function( int x ) { if ( x < 10 ) { std::cout << "x is less than 10\n"; return; } std::cout << "x * x = " << x * x << std::endl; }
12345
void Foo() { return; }