~ok2/retro-language/arduino

« back to all changes in this revision

Viewing changes to incoming/java/com/xoba/ngaro/inf/IStack.java

  • Committer: crc
  • Date: 2012-06-14 20:50:10 UTC
  • Revision ID: crc@questor-20120614205010-aer49mpz6tnjvqwa
add java sources from Mike Andrews

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package com.xoba.ngaro.inf;
 
2
 
 
3
public interface IStack {
 
4
 
 
5
        public int peek();
 
6
 
 
7
        public int pop();
 
8
 
 
9
        public void push(int v);
 
10
 
 
11
        public int getDepth();
 
12
 
 
13
        public void drop(int i);
 
14
 
 
15
        public int peek2();
 
16
 
 
17
}
 
 
b'\\ No newline at end of file'