|
|
So I swear I typed this in EXACTLY as the book told me but it still says I have an error at the "thread main". Please help!
class BlankFiller {
public static void main(String[] args) {
System.out.println("The " + args[0]
+ " " + args[1] + " fox "
+ "jumped over the "
+ args[2] + " dog."
);
}
}