#include <smallBrain.hpp>
// g++ tells me that it could not find "bigBrain.hpp"
#include <WorkCalendar.hpp>
// Automatically updated list of works
#include <projects.hpp>
// Automatically updated list of projects
// #include <luck.hpp>
// Ran out of ^ a long time ago
int32_t main() {
while (brain.alive) {
while (works.empty() && brain.work) {
brain.think(projects[rand() % projects.size()]);
}
while (!works.empty() && brain.work) {
brain.think(works[0]);
}
// TODO: FIND ANOTHER THING TO DO
}
return 0;
}
☁️
no
Pinned Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.