Reference

Examples

C++

int a = 5;
int & b = a;
b = 7;
cout << a;
int & b = 12;