TheWaterProgrammer

139
reputation
#include <AlwaysAStudent>

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

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

    always_keep_learning.join();

    return 0;
}