All Questions
1 question
0
votes
0
answers
40
views
How to pass system properites in comand line to scala 3 executable
With scala 2 it was possible to pass system properties in the command line using -D<propname>=<propvalue> like in the following example:
$scala -Dpath.to.folder=/opt/myfolder
Scala v3 ...