#include "manager.h"
manager m(2, 3, 4);
void setup() {
// put your setup code here, to run once:
m.begin(115200);
m.addQuestion("was there Antise%mitism after the holicost", 0);
m.addQuestion("Do u have a dad?", 2);
m.addQuestion("Do u have a mom?", 2);
m.addQuestion("Do u have?", 0);
}
void loop() {
// put your main code here, to run repeatedly:
m.run();
}