1 2 3 4 5 6 7 8 9 10 11 12
/*! This file is the entry point of the ruSTLa transpiler. */ use rustla; fn main () -> Result<(), rustla::MainError> { match rustla::run() { Ok(()) => Ok(()), Err(mainerror) => Err(mainerror) } }