Lecture 24
4
How LoginInterpreter interpret works
•get first token on the line
•use  if - else if - else if … logic
–if “exit” return false!  // leave loop in CLIlogin
–if “register”       // create account for new user
–if “help”            // give help
–else                    // input is a username
Lecture 17