积分猫的个人博客,不定期更新一些好玩的东西(兴趣使然)。目前已经是社畜了,喜欢关于计算机的一切,同时也喜欢电子游戏,对于东西的外观有谜一样的痴迷。

#include <stdio.h>
#include <stdbool.h>

extern int learn_something();

int main() {
      const bool alive = true;

      while (alive) {
            learn_something();
      }

      return 0;
}