No way this is working!
The build was successful. 詳細

このコミットが含まれているのは:
Rafal Kupiec 2019-07-01 21:03:45 +02:00
コミット 4d150c2fe3
署名者: belliash
GPGキーID: 4E829243E0CFE6B4
1個のファイルの変更2行の追加1行の削除

ファイルの表示

@ -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;