summaryrefslogtreecommitdiff
path: root/8p14.cpp
blob: 1fc3c1ee112ee4b43238f72ffb1e638f9a946b1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

/*
 *
 * 8.14
 *
 *
 */

int main () {

	/*

	  They are references because the vectors could be very
	   large and passing a reference means it does not have to
	   be copied.

	   Const is because the data only needs to be read.

	*/
	return 0;
}