I believe you and trust you but don't forget world will not stand stood and new generation of programmers incoming on the market without this legacy. They are no longer teaching them at school c++. Java instead. Try to learn one technology young generation and if you keep it in hand you are the monopolist within next 10 years.
mov ax, 5 mov bx, 4 add ax, bx
int x = 5; int y = 4; x += y;
var x = 5; var y = 4; x += y;
Declare x to be an integer, and set its value to be five; Declare y to be an integer, and set its value to be four; Increase the value of x by adding the value of y to it;