import java.io.IOException; class LiftTest { public static void main(String[] args) { RectDomain<1> R = [0 : 10], I = [1 : 9]; double [1d] e = new double [R]; int j, l = 7; /* Lift calculation of Math.pow(2, 3) and perhaps the comparison with 0. */ foreach (p in I) { if (Math.pow(2, 3) > 0) j = 2; j = 3; e[p] = j; } System.out.println("Done."); } }