Skip to content
Snippets Groups Projects
main.cpp 375 B
/**
 * This file serves for testing of various examples, have fun!
 *
 * @author Michal Kravčenko
 * @date 14.6.18 -
 */

#include <iostream>
#include <cstdio>
#include <fstream>
#include <vector>
#include <utility>
#include <algorithm>

#include "4neuro.h"


int main(int argc, char** argv){
    MSG_INFO("INFO MESSAGE!");

    MSG_DEBUG("DEBUG MESSAGE");

    return 0;
}