blob: 9b7c34da68770ad5e27b4a36ae202fe137f9b7f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
*
* 7.8
*
*
*/
int main () {
// Read has no const ref SalesData because we are writing to the Revenue member with new data
// Print has const ref SalesData because we are only reading from it
return 0;
}
|