I have a question from class and need to write a simple main program that would print out any command line arguments in reverse.
Im still quite new to Java as this is my first course.
An example of what the program would do was given:
example. javac Test.java
java Test one two three
three two one
java Test 4 1 Hello
Hello 1 4
Thank you to anyone who can help me, life saver!