9 lines
160 B
Java
9 lines
160 B
Java
|
//: housekeeping/Measurement.java
|
|||
|
// <20>2015 MindView LLC: see Copyright.txt
|
|||
|
class Depth {}
|
|||
|
|
|||
|
public class Measurement {
|
|||
|
Depth d = new Depth();
|
|||
|
// ...
|
|||
|
} ///:~
|