I am a beginner in JADE programming and I'm having problems running the JADE code in Java. Can someone help me in this??
I am using eclipse and I've added the jade jars, but when I try to run the JADE code it's not working.
import jade.core.Agent;
public class HelloAgent extends Agent
{
protected void setup()
{
System.out.println("Hello World. ");
System.out.println("My name is "+ getLocalName());
}
}