From 99d3eb7b7082aa5820095dca7bee851c31bf5f0c Mon Sep 17 00:00:00 2001 From: pelibby16 <pelibby16@earlham.edu> Date: Thu, 17 Oct 2024 10:14:30 -0400 Subject: [PATCH] small change to java --- topical-units/env-java/README.md | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/topical-units/env-java/README.md b/topical-units/env-java/README.md index e2ea309..a4f4db9 100644 --- a/topical-units/env-java/README.md +++ b/topical-units/env-java/README.md @@ -58,10 +58,4 @@ Write code, here is a provisional list of programs to develop: * Hello World * Read a file containing an arbitrary number of integers, one per line. Display the count, total, and average on stderr at the end of the run. Make the program capable of displaying the maximum values of each quantity without resorting to arbitrary precision arithmetic (hint, unsigned long int). * Use a function/method as part of your program, e.g. to write the aggregated values to stdout. -* Use command line parameters available via argv and argc to support -i input-file-name to pass the input file to your program. - -class helloWorld { - public static void main(String[] args) { - System.out.println("Hello, world!"); - } -} \ No newline at end of file +* Use command line parameters available via argv and argc to support -i input-file-name to pass the input file to your program. \ No newline at end of file -- GitLab