14 lines
		
	
	
		
			219 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			219 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/php
 | 
						|
<?php
 | 
						|
 | 
						|
use function Joop\Asynchronous\async;
 | 
						|
 | 
						|
require_once __DIR__ . '/../../vendor/autoload.php';
 | 
						|
 | 
						|
$process = function ($number) {
 | 
						|
	sleep($number);
 | 
						|
	return $number;
 | 
						|
};
 | 
						|
 | 
						|
async($process, 2);
 | 
						|
// Do stuff...
 |