lasd/librerie/exercise4/main.cpp

17 lines
426 B
C++
Raw Normal View History

2021-05-11 06:51:06 +02:00
#include "zlasdtest/test.hpp"
#include "zmytest/test.hpp"
2021-05-13 21:52:08 +02:00
#include "bst/bst.hpp"
2021-05-11 06:51:06 +02:00
/* ************************************************************************** */
#include <iostream>
2021-05-13 21:52:08 +02:00
using namespace lasd;
2021-05-11 06:51:06 +02:00
/* ************************************************************************** */
int main() {
std::cout << "Lasd Libraries 2020" << std::endl;
lasdtest(); // To call in the menu of your library test!
return 0;
}