mirror of
https://github.com/xfarrow/lasd.git
synced 2025-01-10 17:02:39 +01:00
02a46f308b
container.cpp container.hpp
8 lines
98 B
C++
8 lines
98 B
C++
#include"vector.hpp"
|
|
int main(){
|
|
Vector<int> v(5);
|
|
//v[1] = 3;
|
|
cout<<v<<endl;
|
|
return 0;
|
|
}
|