Keyboard shortcuts

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

Read command line arguments

Rust

#![allow(unused)]
fn main() {
let args = std::env::args(); // iterator
}

Python

import sys
args = sys.argv # list