diff options
Diffstat (limited to '7p27.cpp')
-rw-r--r-- | 7p27.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/7p27.cpp b/7p27.cpp new file mode 100644 index 0000000..c5b3822 --- /dev/null +++ b/7p27.cpp @@ -0,0 +1,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; +} |