You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
310 B
21 lines
310 B
/*
|
|
* Authors : Kerem Yollu, Edwin Koch
|
|
* Date : 08.08.21
|
|
* Version : 0.1
|
|
* License : MIT-0
|
|
*
|
|
* Description : Entry to project
|
|
*
|
|
* TODO : ALL
|
|
*
|
|
*/
|
|
|
|
#include "main.hpp"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
std::cout << "Main Begin" << std::endl;
|
|
std::cout << "Main End" << std::endl;
|
|
return 1;
|
|
}
|