I have this Java code:
import acm.program.*;
public class test extends Program
{
public void run () { println ("Hello World!!!");}
}
When I try to compile it I get this:
izzy@izzy-VPCEB1S1E:~/Java$ javac -cp acm.jar test.java test.java:1: error: package acm.jar does not exist
import acm.jar.*;
^ test.java:3: error: cannot find symbol
public class test extends Program { ^ symbol: class Program test.java:4: error: cannot find symbol public void run () { println ("Hello World!!!");} ^ symbol: method println(String) location: class test 3 errors