forked from JavaTX/JavaCompilerCore
11 lines
98 B
Java
Executable File
11 lines
98 B
Java
Executable File
|
|
public class TestOperatorIncrement {
|
|
|
|
public void m(i,j,k,l) {
|
|
i++;
|
|
j--;
|
|
++k;
|
|
--l;
|
|
}
|
|
|
|
} |