JavaTXCompilerInJavaTX/bin/mycompiler/test/operators/TestOperatorIncrement.jav
2013-10-18 13:33:46 +02:00

11 lines
98 B
Java
Executable File

public class TestOperatorIncrement {
public void m(i,j,k,l) {
i++;
j--;
++k;
--l;
}
}