b15f/main.cpp

10 lines
142 B
C++
Raw Normal View History

2019-03-26 08:57:01 +00:00
#include <iostream>
#include "drv/b15f.h"
int main()
{
B15F& drv = B15F::getInstance();
drv.init();
std::cout << "heelol" << std::endl;
}