7 lines
111 B
Text
7 lines
111 B
Text
|
// Methods cannot be overloaded
|
||
|
|
||
|
class Main {
|
||
|
void main() {}
|
||
|
void method(int a) {}
|
||
|
void method(int[] a) {}
|
||
|
}
|