It does not look like the program is running at all, only built. The status at the top says the build was successful, not successful. The -R command will run the program.
Here's what it will look like when the program starts: 
You can also use Log Navigator to jump to the results of previous build and debugging sessions. 
You will often see tutorials written for Windows where the program ends with a user request for input. The reason for this is that the console model in Windows has a program that owns a console window, so the window will disappear as soon as the program exits. Therefore, asking for input as the last thing, the program will continue to work until the user gives it this input, after which the program will end and the console window will disappear.
Non-Windows platforms do not behave this way and usually do not require such code.
bames53
source share