mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
6 lines
114 B
Rust
6 lines
114 B
Rust
// { "args": ["one", "two", "three" ]}
|
|
|
|
fn main() {
|
|
let args = std::env::args();
|
|
assert_eq!(args.len(), 3);
|
|
}
|