-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
31 lines (21 loc) · 718 Bytes
/
Copy pathmain.cpp
File metadata and controls
31 lines (21 loc) · 718 Bytes
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
#include "zlasdtest/test.hpp"
#include "zmytest/test.hpp"
/* ************************************************************************** */
#include <iostream>
/* ************************************************************************** */
int main() {
std::cout << "Lasd Libraries 2024" << std::endl;
unsigned long choice = 0;
std::cout << "Choose the test to execute: " << std::endl << "1. lasdtest" << std::endl << "2. myTest" << std::endl << std::endl;
std::cout<< "Choice: ";
std::cin >> choice;
std::cout << std::endl;
if (choice == 1) {
lasdtest();
} else if (choice == 2) {
mytest();
} else {
std::cout << "Ops...Make a correct choice!" << std::endl;
}
return 0;
}