I am trying to write a code for one of those programs that responds according to your answers. I want to make it so that some of the variables are not case sensitive. For exampl
Worth mentioning String#toLowerCase:
name.toLowerCase().equals("me");
Or simply use String#equalsIgnoreCase:
name.equalsIgnoreCase("me");