• melroy@kbin.melroy.org
      link
      fedilink
      arrow-up
      5
      ·
      3 months ago
      int main() {
          std::cout << "Starting cat food dispenser..." << std::endl;
          while (true) {
              giveMeFood();
              // Waiting for max 1 second
              std::this_thread::sleep_for(std::chrono::seconds(1));
          }
      }