lots of exercises in java... from https://github.com/exercism/java

SNIPPET.txt 85B

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