code:
public static void menu(){
String reply;
System.out.println("Make your choice:");
reply = getLineFromUser(); //assume this function works correctly
if(reply.equals("play")){
playgame();
}
else
if(reply.equals("end")){
stopGame();
}
menu(); // recursive call. Don't use!!!!!
Any ideas? i struggle with while loops at the best of times.