Download this file
1 2 3 4 5 6 7 8 9
public class IfTest { public static void main(String[] args) { int x=1; if (x==1) { System.out.println("x is 1, therefor I see this"); } System.out.println("I will always see this, no matter the value of x"); } }