function createThread(task) {
// Simulate some work
let start = Date.now();
while (Date.now() < 10000);
console.log("Thread started.");
}