JavaCompilerCore/test/parser/OpratorTest.jav

12 lines
143 B
Plaintext
Raw Normal View History

import java.lang.Integer;
class OpratorTest {
m(Integer a, Integer b) {
c = a+b;
// d = a-b;
// e = a*b;
// f = a/b;
return c;
}
}