fn exit(status_code: int) #[builtin(Exit)] {}

fn main() {
    if 'A' != 65 {
        exit(1);
    }
    exit(0);
}