It says it won't compile on the server but it runs fine on my computer?
public class StringHelper {
    public static String multiply(String s) {
        return s.repeat(5);
    }

    public static String multiply(String s, int count) {
        return s.repeat(count);
    }

    public static void main(String[] args) {

    }
}