No way this is working!
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2019-07-01 21:03:45 +02:00
bovenliggende c94de60c29
commit 4d150c2fe3
Getekend door: belliash
GPG sleutel-ID: 4E829243E0CFE6B4
1 gewijzigde bestanden met toevoegingen van 2 en 1 verwijderingen

Bestand weergeven

@ -5,7 +5,8 @@ class Program {
$path = trim($path);
string $str, $temp;
char $char;
for(int $x = 0; $char = $path[$x]; $x++) {
for(int $x = 0; $x < strlen($path); $x++) {
$char = $path[$x];
if(!strstr('/', $char)) $temp += $char;
else if($temp) {
$str += $temp;