// Copyright 2025 Umberto Gotti <umberto.gotti@umbertogotti.dev>
// Licensed under the MIT License or Apache License, Version 2.0
// SPDX-License-Identifier: MIT OR Apache-2.0
usestd::process::ExitCode;fnmain()-> ExitCode{matchcrap4rust::run(){Ok(code)=> code,Err(error)=>{eprintln!("error: {error:#}");ExitCode::from(2)}}}