Prep for version 1.14 development.

This commit is contained in:
Ernie Pasveer
2022-12-12 16:31:45 -06:00
parent 7f41e14793
commit 20d6ae0e3b
11 changed files with 73 additions and 3 deletions
+15
View File
@@ -0,0 +1,15 @@
#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.
}