Skip to content

Commit 80622e6

Browse files
committed
added calculator demo
1 parent 9953860 commit 80622e6

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// Simple Calculator
2+
public class Calculator {
3+
public int add(int a, int b) {
4+
return a + b;
5+
}
6+
}

0 commit comments

Comments
 (0)