I cannot seem to find how to add command line arguments in IntelliJ. Here is my code:
publicclass BlankFiller { publicstaticvoid main(String[] arguments) { System.out.println("The " + arguments[0] + " " + arguments[1] + " fox " + "jumped over the " + arguments[2] + " dog."); }}
I need to be able to specify these arguments. I have tried doing ALT + SHIFT + F10, going to edit, and adding my arguments in the "Program Arguments" section with no luck. I am just starting with IntelliJ, and have previously used DrJava, where there was an interactions pane and I could specify them using
java BlankFiller arg arg arg
How can I do this in IntelliJ? Thanks!
P.S. Please be noob friendly in responses! Thanks again!