Reputation: 198258
I want to use scala to write some command line tools. I found a repository conscript, it seems is what I'm looking for, but lacks document and examples that I have a lot of troubles using it to create a simple Hello world
demo.
Is there any other way to use scala to write command line tools?
Upvotes: 5
Views: 4271
Reputation: 3571
The accepted answer to this question still looks alike a good place to start, since having a good way to parse options and parameters is important. The scopt project mentioned there still looks alive and is decently documented.
Upvotes: 3