Przeglądaj źródła

Merge pull request #751 from exercism/default-snippet

Add default introductory code example
Stuart Kent 9 lat temu
rodzic
commit
d2acd0f20a
1 zmienionych plików z 7 dodań i 0 usunięć
  1. 7
    0
      docs/SNIPPET.txt

+ 7
- 0
docs/SNIPPET.txt Wyświetl plik

1
+class Greeter {
2
+
3
+    String getGreeting() {
4
+        return "Hello, World!";
5
+    }
6
+
7
+}