6 lines
73 B
PHP
Executable File
6 lines
73 B
PHP
Executable File
<?php
|
|
$an = new Swoole\Atomic(100);
|
|
|
|
$an->add(12);
|
|
echo $an->get()."\n";
|