Newsletter sign-up
View all newsletters

Enterprise Java Newsletter
Stay up to date on the latest tutorials and Java community news posted on JavaWorld

JavaWorld Daily Brew

BASIC HELP WITH ARGUMENTS NEEDED



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."
);
}
}