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