Files
sistema_funcionando_lastwar/vendor/react/partial/examples/partial.php

15 lines
209 B
PHP
Executable File

<?php
require __DIR__.'/../vendor/autoload.php';
use function React\Partial\bind;
$add = function ($a, $b) {
return $a + $b;
};
$addOne = bind($add, 1);
echo sprintf("%s\n", $addOne(5));
// outputs 6