Bruce Eckel 49edcc8b17 reorg
2015-06-15 17:47:35 -07:00

11 lines
247 B
Java

//: com/mindviewinc/simple/Vector.java
// Š2015 MindView LLC: see Copyright.txt
// Creating a package.
package com.mindviewinc.simple;
public class Vector {
public Vector() {
System.out.println("com.mindviewinc.simple.Vector");
}
} ///:~