Files
seer/tests/hellotabs/function1.cpp
T

16 lines
235 B
C++
Raw Normal View History

2022-12-12 16:31:45 -06:00
#include "function1.h"
#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.
}