9 lines
202 B
Java
9 lines
202 B
Java
//: typeinfo/pets/Pug.java
|
|
// ©2015 MindView LLC: see Copyright.txt
|
|
package typeinfo.pets;
|
|
|
|
public class Pug extends Dog {
|
|
public Pug(String name) { super(name); }
|
|
public Pug() { super(); }
|
|
} ///:~
|