Do not use broken foreach() loop in this test.
All checks were successful
The build was successful.

This commit is contained in:
Rafal Kupiec 2019-04-25 19:09:22 +02:00
부모 cb455c3c73
커밋 a7606864fa
로그인 계정: belliash
GPG 키 ID: 4E829243E0CFE6B4

파일 보기

@ -94,9 +94,9 @@ class Program {
}
sort($files);
unset($file);
foreach($files as $file) {
print('Executing "' + $file + '"' + "\n");
$code = file_get_contents('tests/data/brainfuck/' + $file);
for(int $n = 0; $n < sizeof($files); $n++) {
print('Executing "' + $files[$n] + '"' + "\n");
$code = file_get_contents('tests/data/brainfuck/' + $files[$n]);
$bf = new Brainfuck($code, $input);
$bf->run();
print("\n");