OnJava8-Examples/housekeeping/MethodInit.java

7 lines
148 B
Java
Raw Normal View History

2015-06-15 17:47:35 -07:00
//: housekeeping/MethodInit.java
// <20>2015 MindView LLC: see Copyright.txt
public class MethodInit {
int i = f();
int f() { return 11; }
} ///:~