diff options
author | Oskar <[email protected]> | 2024-10-08 23:37:52 +0200 |
---|---|---|
committer | Oskar <[email protected]> | 2024-10-08 23:37:52 +0200 |
commit | e06a1fdebe095ad46b0607297f78077fccb11db1 (patch) | |
tree | 2c10701caf940f22caa00f4d748b715f1bff4eb3 /9p12.cpp | |
parent | 62b5afc0bdff7fe33a347ab53a83e02d9f04f97e (diff) |
more
Diffstat (limited to '9p12.cpp')
-rw-r--r-- | 9p12.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/9p12.cpp b/9p12.cpp new file mode 100644 index 0000000..fd36354 --- /dev/null +++ b/9p12.cpp @@ -0,0 +1,15 @@ +#include <iostream> + +/* + * + * 9.12 + * + * + */ + +int main () { + + // constructor that takes container of same type as itself and creates a copy of the other container. + // constructor with iterators take the iterators and iterate with them to copy the values. Container types dont have to be the same, just the element types that have to be the same. + return 0; +} |