9 lines
162 B
Java
9 lines
162 B
Java
//: initialization/Measurement.java
|
|
// ©2015 MindView LLC: see Copyright.txt
|
|
class Depth {}
|
|
|
|
public class Measurement {
|
|
Depth d = new Depth();
|
|
// ...
|
|
} ///:~
|