/*
* Created on Dec 28, 2004
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
/**
* @author jlhotak
*
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
*/
public class JimpleExample {
public static void main(String[] args) {
int x = 0;
int [] a = {1,2,3,4,5,6,7};
while (x < a[x++]){
x = x + a[4] + 2;
}
}
}