/**
 * Copyright Pandorabots, Inc. &copy; 2014.
 * All Rights Reserved.
 */
public class MainPandorabots {
    public static void testPandorabots () {
        PandorabotsTalkAPI talkAPI = new PandorabotsTalkAPI();
        String input; String response;
        String[] inputs = {"Hello", "How are you", "What is your name?", "Call me Richard"};
        for (int i = 0; i < inputs.length; i++) {
            response=talkAPI.askPandorabots(inputs[i]);
            System.out.println("Human ("+talkAPI.custid+"): "+inputs[i]);
            System.out.println("Bot: "+response);
        }
    }
}
