diff --git a/src/command_line_arguments.md b/src/command_line_arguments.md index 1294568..87440e6 100644 --- a/src/command_line_arguments.md +++ b/src/command_line_arguments.md @@ -2,17 +2,9 @@ -When you run a program like so +When you run a Java program from a terminal, you often want to pass configuration values, file paths, or modes of operation without prompting the user while the program is running. -``` -java src/Main.java -``` +You run a Java file like so: -Anything you put to the right of `src/Main.java` will be available to your program as a -"command line argument."[^name] - -``` -java src/Main.java example -``` - -[^name]: They come from the command line and they are arguments to your program. \ No newline at end of file +```bash +java src/Main.java \ No newline at end of file