This template repository is part of a 4-week Rust course, start on week 1 here if you want to learn more about Rust! This Rust template is meant to help you get quickly started with a new project. It ...
use std::fs::File; use std::io::{BufRead, BufReader}; use std::env; fn main() { let args: Vec<String> = env::args().collect(); print!("My file path is: {:?}", args[0 ...