2021-10-02 11:19:36 -05:00
|
|
|
#include "function1.h"
|
2021-09-05 11:58:58 -05:00
|
|
|
#include <iostream>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
|
|
void function1 (const std::string& text) {
|
|
|
|
|
|
|
|
|
|
int i = 42;
|
|
|
|
|
|
|
|
|
|
sleep(2); // Simulate doing work.
|
|
|
|
|
|
|
|
|
|
std::cout << text << i << std::endl;
|
|
|
|
|
|
|
|
|
|
sleep(3); // Simulate doing work.
|
|
|
|
|
}
|
|
|
|
|
|