8 lines
97 B
Text
8 lines
97 B
Text
|
// An array doesn't have methods
|
||
|
|
||
|
class Main {
|
||
|
Object[] array;
|
||
|
void main() {
|
||
|
array.go();
|
||
|
}
|
||
|
}
|