radix-clis 1.4.0

A collection of CLIs for developing, building and testing Scrypto code, from the Radix DLT project.
1
2
3
4
pub fn exit_with_error(msg: String, exit_code: i32) {
    eprintln!("{}", msg);
    std::process::exit(exit_code)
}