One more callback test.
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2019-04-05 09:13:29 +02:00
parent cfc0342a10
commit 4d07a10336
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
2 changed files with 2 additions and 0 deletions

View File

@ -12,6 +12,7 @@ class Program {
print($this->testArray()['Machine'] + "\n"); print($this->testArray()['Machine'] + "\n");
$this->testCallback()['callme'](); $this->testCallback()['callme']();
print(true ? "TRUE\n" : false ? "true\n" : "false\n"); print(true ? "TRUE\n" : false ? "true\n" : "false\n");
(void(string $name) { print("This should work too - $name.\n");})('AerScript');
} }
} }

View File

@ -1,3 +1,4 @@
Turing Turing
Hello world Hello world
TRUE TRUE
This should work too - AerScript.