I started paying around with Crystal lang, I want to use OptionParser to show a help text, however -h will be interpred by Crystal instead of OptionParser
I am using the example from https://crystal-lang.org/api/0.18.7/OptionParser.html
and calling the app myAppl with:
crystal src/myAppl.cr --help
This shows Crystal help. Now, if I compile the app then it shows the help text I wrote OptionParser
What I am doing wrong?