Skip to content

Commit

Permalink
TDD 맛보기 완료 - #3
Browse files Browse the repository at this point in the history
  • Loading branch information
hou27 committed Jan 5, 2023
1 parent 290f1d5 commit b39cf62
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
package com.hou27.chap02;

public class Calculator {

public static int plus(int a, int b) {
return 0;
return a + b;
}

}

0 comments on commit b39cf62

Please sign in to comment.