Typehinting merge #50

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

View File

@ -0,0 +1,16 @@
class Program {
function count(int $a, int $b) {
print("Counting 2 integers: $a + $b = ", $a + $b, "\n");
}
function count(float $a, float $b) {
print("Counting 2 floats: $a + $b = ", $a + $b, "\n");
}
function main() {
$this->count(4.3, 5.7);
$this->count(6, 4);
}
}

View File

@ -0,0 +1,2 @@
Counting 2 floats: 4.3 + 5.7 = 10
Counting 2 integers: 6 + 4 = 10