7 lines
94 B
Java
7 lines
94 B
Java
//: generics/Performs.java
|
|
|
|
public interface Performs {
|
|
void speak();
|
|
void sit();
|
|
} ///:~
|