fsfw-from-zero/start/tasks-srcs/main-01.cpp

18 lines
303 B
C++
Raw Normal View History

2022-09-28 18:35:15 +02:00
#include <iostream>
#include <thread>
using namespace std;
void mySimpleTask() {
using namespace std::chrono_literals;
while(true) {
cout << "Hello World" << endl;
this_thread::sleep_for(1000ms);
}
}
int main() {
std::thread thread(mySimpleTask);
thread.join();
}