7 lines
122 B
Plaintext
Raw Normal View History

2023-10-17 12:26:40 +02:00
import java.lang.Integer;
import java.lang.Double;
class Overloading {
m(x) { return x + x; }
m(x) { return x || x; }
}