2021-03-30 18:59:56 +02:00
|
|
|
#include "container/container.hpp"
|
2021-04-09 10:31:22 +02:00
|
|
|
#include "vector/vector.hpp"
|
|
|
|
#include "list/list.hpp"
|
|
|
|
#include "zlasdtest/test.hpp"
|
|
|
|
|
|
|
|
#include "zmytest/test.hpp"
|
|
|
|
|
2021-03-30 16:30:34 +02:00
|
|
|
/* ************************************************************************** */
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
/* ************************************************************************** */
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
std::cout << "Lasd Libraries 2020" << std::endl;
|
2021-04-09 10:31:22 +02:00
|
|
|
menu();
|
2021-03-30 16:30:34 +02:00
|
|
|
return 0;
|
|
|
|
}
|