TheWaterProgrammer

7,055
reputation
12
70
159
#include <AlwaysAStudent>

int main(int argc, char *argv[]) {

    std::thread always_keep_learning([&] {
        Learn();
    });

    always_keep_learning.join();

    return 0;
}