Files
School/Anul 1/Semestrul 2/Data structures/Lab 4/App.cpp
T
2024-08-31 12:07:21 +03:00

19 lines
221 B
C++

#include "ExtendedTest.h"
#include "ShortTest.h"
#include "Map.h"
#include <iostream>
using namespace std;
int main() {
testAll();
testAllExtended();
cout << "That's all!" << endl;
system("pause");
return 0;
}