Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 521 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 521 Bytes
  • To start the project, pick a branch and run:
cargo run
  • The tutorial is from CLI in Rust docs. To run it, run:
cargo run -- main src/advent-of-code15/[file-name].rs
  • To run different files, change the [file-name] value in Cargo.toml.

  • To log in the file that has use log::{info, warn}; in it, run:
<!-- windows -->
set RUST_LOG=info

<!-- Linux and MacOs -->
env RUST_LOG=info

cargo run --bin output-log