Paul Woitaschek
03/20/2020, 8:36 AMkotlin my-script.main.kts --hello
the compiler doesn't pass it through:
error: invalid argument: --hello
vqrs
03/20/2020, 8:44 AMkotlin my-script.main.kts -- --hello
instead, the double dash on its own is often used to separate program args from forwarded argsPaul Woitaschek
03/20/2020, 9:49 AM