mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-06 03:50:04 +02:00
13 lines
204 B
PHP
13 lines
204 B
PHP
<?php
|
|
|
|
use React\EventLoop\Loop;
|
|
|
|
require __DIR__ . '/../../vendor/autoload.php';
|
|
|
|
Loop::futureTick(function () {
|
|
echo 'b';
|
|
});
|
|
Loop::futureTick(function () {
|
|
echo 'c';
|
|
});
|
|
echo 'a';
|