Typehinting merge #50

已合并
belliash 2019-04-17 11:27:52 +02:00 将 298 次代码提交从 typehinting合并至 master
修改 2 个文件,包含 2 行新增0 行删除
仅显示提交 4d07a10336 的更改 - 显示所有提交

查看文件

@@ -12,6 +12,7 @@ class Program {
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');
}
}

查看文件

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