Typehinting merge #50

Merged
belliash merged 298 commits from typehinting into master 2019-04-17 11:27:52 +02:00
2 changed files with 2 additions and 0 deletions
Showing only changes of commit 4d07a10336 - Show all commits

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.