1 2 3 4 5 6 7 8
use leetcode_cli::cli; fn main() { let r = cli::main(); if r.is_err() { println!("{:?}", r.err().expect("This won't happend.")); } }