Im very new to programming, and I recently tried registering for code wars. It shows a number of problems, presumably, before allowing someone to register.
The minute I got stuck on this:
public class Person{ String name; public Person(String personName){ name = personName; } public String greet(String yourName){ return String.format("Hi %s, my name is %s", yourName, name); } }
Note Correct this code so that the greet function returns the expected value.
I canβt understand in my life what the problem is. I tried to enter the code in eclipse and there are no errors, so I'm not quite sure what is required
source share