mirror of
https://gitlab.com/manzerbredes/uciadapter.git
synced 2025-04-05 17:46:27 +02:00
16 lines
238 B
C++
16 lines
238 B
C++
![]() |
#include <iostream>
|
||
|
#include <string>
|
||
|
#include "UCI.hpp"
|
||
|
|
||
|
using namespace uciadapter;
|
||
|
using namespace std;
|
||
|
|
||
|
int main() {
|
||
|
|
||
|
UCI u("/home/loic/Stockfish-sf_14.1/src/stockfish");
|
||
|
|
||
|
std::cout << u.GetBuffer() << std::endl;
|
||
|
|
||
|
return (0);
|
||
|
}
|