-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
31 lines (28 loc) · 1.16 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: vismaily <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/08/22 12:20:25 by vismaily #+# #+# */
/* Updated: 2022/10/31 16:16:26 by vismaily ### ########.fr */
/* */
/* ************************************************************************** */
#include "Containers/vector.hpp"
#include "Containers/stack.hpp"
#include "Containers/map.hpp"
#include <vector>
#include <stack>
#include <map>
#include <iostream>
#include <string>
void vector_test();
void stack_test();
void map_test();
int main()
{
vector_test();
stack_test();
map_test();
}