mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-10-29 04:39:16 +00:00
8 lines
89 B
PHP
Executable File
8 lines
89 B
PHP
Executable File
<?php
|
|
$x = 0.0001;
|
|
for ($i = 0; $i <= 1000000; $i++) {
|
|
$x += sqrt($x);
|
|
}
|
|
echo "OK!";
|
|
?>
|