package name.panitz.gm.test;
import name.panitz.gm.*;
public class StackExample {
  public static void main(String [] args)throws Exception{
    Instruction [] code
      = {new PushInt(42)
        ,new Push(0)
        ,new PushChar('g')
        ,new Slide(1)
        ,new Pop(1)
        ,new End()
        };
    RunTest.run(code);
  }
}

