2017-02-14から1日間の記事一覧

Attributes

https://doc.rust-lang.org/book/attributes.html #[hoge]という記法をattributeというものらしい。 #[cfg(target_os = "macos")] // macosだけで動作する fn only() { println!("mac"); } #[cfg(target_os = "linux")] // linuxだけで動作する fn only() { …