Przeglądaj źródła

Merge pull request #705 from rootulp/patch-1

twelve-days: default sing method
FridaTveit 9 lat temu
rodzic
commit
7670be7db4

+ 4
- 0
exercises/twelve-days/src/main/java/TwelveDays.java Wyświetl plik

@@ -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
 }