Typehinting merge #50

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

View File

@ -9,10 +9,12 @@ class Program {
}
void main() {
callback[] $constr = {'print'};
print($this->testArray()['Machine'] + "\n");
$this->testCallback()['callme']();
print(true ? "TRUE\n" : false ? "true\n" : "false\n");
(void(string $name) { print("This should work too - $name.\n");})('AerScript');
$constr[0]('Test finished.' + "\n");
}
}

View File

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