#include <iostream>
using namespace std;
class Test
{
void foo() { boolean = true; }
// True or false
bool boolean;
};
static void
foo_function( int var_with_underscore )
{
var_with_underscore++;
}
int main( int argc_test, char * argv[] )
{
foo_function( 0 );
char sz[] = "Hello, World!"; //Hover mouse over "sz" while debugging to see its contents
cout << sz << endl; //<================= Put a breakpoint here
return 0;
}