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