#!/usr/bin/perl -w

use lib ".";
use Chatbot::Eliza;

$chatbot = new Chatbot::Eliza 'Liz';

# seed the random number generator
srand( time ^ ($$ + ($$ << 15)) );    

print "\nWelcome to your therapy session.\n";
print "Your therapist's name is ", $chatbot->name;
print ".\n\n";

$chatbot->command_interface();

