blob: 9f853b71662e3dd0cb1b1929576ea899d2fc5a68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
public class AFewVars {
public static void main(String[] args) {
int i0 = 0;
int i1 = 1;
int i2 = 2;
int i3 = 3;
int i4 = 4;
int i5 = 5;
int i = 1;
i++;
System.out.println(i);
}
}
|