JavaCompilerCore/resources/javFiles/AddLong.jav

9 lines
149 B
Plaintext
Raw Normal View History

2018-03-07 07:47:43 +00:00
import java.lang.Integer;
import java.lang.Long;
public class AddLong{
Long add(Integer a, Long b) {
2018-03-07 07:47:43 +00:00
Long c = a+b;
return c;
}
}