package main;
import mirc.mircBotThread;
public class Main {
static mircBotThread mircBot;
public static void main(String args[]) {
try
{
mircBot= new mircBotThread();
mircBot.start();
}
catch (Exception ex)
{
ex.printStackTrace();
System.out.println("mircBot Thread could not start");
}
}
}