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

HelloWorld.java 101B

123456
  1. public class HelloWorld {
  2. public static String hello(String name) {
  3. return null;
  4. }
  5. }