#include <iostream>
int main()
{
    int x = 0; // <> Initialization of _variable_ `x` with value `0`
    std::cout << __PRETTY_FUNCTION__ << std::endl;
    x = 42; // <> Copy-assignment
    std::cout << __cplusplus << std::endl;
    return x; // <> returning the value to the caller
}