Max Base - 2020-12-02 13:58:50 -
In reply to message 2 from Max Base
How Tests.php works?
```
[max@base tests]$ php Tests.php
-> 1 / 1.php => TRUE
```
How Generates.php works?
```
[max@base tests]$ rm output/1.php
[max@base tests]$ php Generates.php
[1]=> output/1.php created!
[max@base tests]$ cat output/1.php
<?php
/* dfgdgdf gdfg */
for($v = 7;$v <= 100 / 10;$v++) {
$b=$v;
$x=[];
for($i = 1;$i <= $v;$i++) {
$x[]=$i;
}
for($k = 3;$k <= ((floor($v - 1) / 2) + 1);$k++) {
$r=$k;
solve($x, $v, $b, $k, $r);
}
}
```