summaryrefslogtreecommitdiff
path: root/7p25.cpp
blob: 298e6734ce315d0c52437ff2bc0856a9706e3d16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "screen.hpp"
/*
 *
 * 7.25
 *
 *
 */

int main () {

	// I am not really sure what this means...
	Screen s1;
	Screen s2(100, 100, '0');
	Screen s3 = s1;
	s1 = s2;
	return 0;
}