<@UBV8BCQPJ>: re the main class: from experimentin...
# development
w
@red-balloon-89377: re the main class: from experimenting with:
Copy code
$ java -cp . Thing -- hello!
Hello world! 2
$ java -Dsomething=something -cp . Thing -- hello!
Hello world! 2
$ java -cp . Thing -- -Dsomething=something hello!
Hello world! 3
$ java -cp . -Dsomething=somethin Thing -- hello!
Hello world! 2