You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
260 B
Rust

use std::env;
use day_1;
fn main()
{
let args: Vec<String> = env::args().collect();
for (i,arg) in args.iter().enumerate()
{
println!("Arg {}: {}", i + 1, arg);
}
1 year ago
println!("Hello, world!");
day_1::day_1::test_print();
1 year ago
}