fortitude 0.3.0

A Fortran linter, written in Rust and installable with Python
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use fortitude::check::check;
use fortitude::cli::{parse_args, SubCommands};
use fortitude::explain::explain;

fn main() {
    let args = parse_args();
    match args.command {
        SubCommands::Check(args) => {
            std::process::exit(check(args));
        }
        SubCommands::Explain(args) => {
            std::process::exit(explain(args));
        }
    }
}