Basic dynamic array (list/vector) implementation
Find a file
2021-11-21 00:51:26 +02:00
.gitignore First commit 2021-11-21 00:38:43 +02:00
dynarray.hpp First commit 2021-11-21 00:38:43 +02:00
example.cpp First commit 2021-11-21 00:38:43 +02:00
Makefile First commit 2021-11-21 00:38:43 +02:00
README.md Uppercase because yes 2021-11-21 00:51:26 +02:00

DynArray: Basic dynamic array (list/vector) implementation

Why? Why not.

How to run?

Got make?

make run

No make?

g++ example.cpp -o example
./example

Windows?

g++ example.cpp -o example.exe
.\example.exe

Windows without g++?

I never compiled something using msvc from the terminal. I guess make a new Visual Studio project, copy-paste the files in there and have fun, idk.