pub fn get() -> Vec<String>Expand description
Returns a list of program arguments
On the web, program arguments are constructed from the query string:
?flag&key=value1&key=value2 turns into --flag --key=value1 --key=value2.
Also, args=something just adds an arg to the list: ?args=test turns into test.