Returns a hint for the given exercise
| 76 | #[argh(subcommand, name = "hint")] |
| 77 | /// Returns a hint for the given exercise |
| 78 | struct HintArgs { |
| 79 | #[argh(positional)] |
| 80 | /// the name of the exercise |
| 81 | name: String, |
| 82 | } |
| 83 | |
| 84 | fn main() { |
| 85 |
nothing calls this directly
no outgoing calls
no test coverage detected