#include <mylibA/export.h>
#include <iostream>

MYLIBA_API int mylibA_api()
{
    std::cout << "hello from mylibA" << std::endl;
    return 42;
}
