summaryrefslogtreecommitdiff
path: root/7p27.cpp
blob: c5b3822a17097fbe75d39320a16fe73f8d1311d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <iostream>
#include "screen.hpp"

/*
 *
 * 7.27
 *
 *
 */

int main () {

	Screen myScreen(5, 5, 'X');
	myScreen.move(4,0).set('#').display(std::cout);
	std::cout << "\n";
	myScreen.display(std::cout);
	std::cout << "\n";
	return 0;
}