# L-13 MCS 572 Wed 8 Feb 2023 : showargs.jl # Shows the name of the Julia program and the command line arguments. print(PROGRAM_FILE, " has ", length(ARGS)) println(" arguments.") println("The command line arguments :") for x in ARGS println(x) end