ryansuchocki / microscheme

A Scheme subset for Atmel microcontrollers.
http://ryansuchocki.github.io/microscheme/
MIT License
300 stars 20 forks source link

Missing full help text #17

Closed bjornfor closed 9 years ago

bjornfor commented 9 years ago

It would be nice to have microscheme print its own (full) help text, so that one doesn't have to open README or something like that just to know what the command line flags are for:

$ microscheme 
Microscheme 0.9.1, (C) Ryan Suchocki
Usage: microscheme [-aucvrio] [-m model] [-d device] [-w filename] [-t rounds] program[.ms]

I also tried -h and --help, but those are not implemented.

bjornfor commented 9 years ago

By "full", I'm just referring to command line option description.

ryansuchocki commented 9 years ago

Done. It will now show full help if '-h' passed, or if no inputs given...

bjornfor commented 9 years ago

Thanks!