7 lines
141 B
Java
7 lines
141 B
Java
// housekeeping/MethodInit.java
|
|
// ©2016 MindView LLC: see Copyright.txt
|
|
public class MethodInit {
|
|
int i = f();
|
|
int f() { return 11; }
|
|
}
|