0
5

Test if method overloading is working properly.
Alle Prüfungen waren erfolgreich
The build was successful.

Dieser Commit ist enthalten in:
Rafal Kupiec 2019-02-07 18:23:37 +01:00
Ursprung ed8dab7870
Commit 6a74bf9e8b
Signiert von: belliash
GPG-Schlüssel-ID: 4E829243E0CFE6B4
2 geänderte Dateien mit 18 neuen und 0 gelöschten Zeilen

Datei anzeigen

@ -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);
}
}

Datei anzeigen

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