18 lines
301 B
C++
18 lines
301 B
C++
#include "Board.h"
|
|
#include "Move.h"
|
|
#include "Types.h"
|
|
|
|
Board b = Board();
|
|
|
|
void setup() {
|
|
// put your setup code here, to run once:
|
|
Serial.begin(19200);
|
|
}
|
|
|
|
void loop() {
|
|
// put your main code here, to run repeatedly:
|
|
Serial.println(F("hello"));
|
|
delay(1000);
|
|
Serial.println(b.get_zobrist());
|
|
}
|