Exit with code
Rust
#![allow(unused)]
fn main() {
std::process::exit(255)
}
Python
import sys
sys.exit(255)
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
#![allow(unused)]
fn main() {
std::process::exit(255)
}
import sys
sys.exit(255)