Daily_study_210912

TIL 2021_09_12

Rust 언어 스터디
TextBook : The Rust Programming Language (https://doc.rust-lang.org/book/title-page.html)
Exercise repo : https://github.com/JaeYoonKimme/Rust_Programming_Language

Chapter12 : An I/O Project: Building a Command Line Program

  • stdout으로 출력되던 에러메세지를 stderr로 출력되게 수정했다.
    -> (eprintln! 매크로 사용)
    -> stdout출력 결과를 > 로 리다이렉션해서 확인해 보았다.