School Commit Init
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
package Models.Program;
|
||||
|
||||
public interface IStack<T> {
|
||||
public T pop();
|
||||
public void push(T value);
|
||||
public boolean isEmpty();
|
||||
}
|
||||
Reference in New Issue
Block a user