<<<Index>>>

return from a void function



    void display_value( int x )
    {
        if ( x < 0 )
            return;
        std::cout << x;
    }

<<<Index>>>