hey everyone i'm new at #jade and now i'm trying to write #main class and i have error at "#Runtime rt=new Runtime.instance();" this line ,i added all external jars for jade but still have this problem what dose that mean pLiz help
import jade.core.Runtime; public class Main {
public static void main(String[] args) {
Runtime rt=new Runtime.instance();
}
instancemethod is a static method that returns the instance ofRuntimeclass. you needn't use operatornew. That is, try to useRuntime rt=Runtime.instance();