ソースを参照

twelve-days: default sing method

Rootul Patel 9 年 前
コミット
0f372b3823
共有1 個のファイルを変更した4 個の追加0 個の削除を含む
  1. 4
    0
      exercises/twelve-days/src/main/java/TwelveDays.java

+ 4
- 0
exercises/twelve-days/src/main/java/TwelveDays.java ファイルの表示

@@ -6,4 +6,8 @@ class TwelveDays {
6 6
     String verses(int startVerse, int endVerse) {
7 7
         throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
8 8
     }
9
+    
10
+    String sing() {
11
+        throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
12
+    }
9 13
 }