https://github.com/ykon/w10wheel.net/releases
- スクロール開始のセット順序を変更 (スレッドの問題)
問題の発生を確認できていませんが、
運が悪いと、スレッドのタイミングによって
動作が不正になる可能性もあるので
念のため順序を入れ替えました。
DPI変更の影響を受けなくなりました。
fn main() {
for n in 1..101 {
match (n % 3, n % 5) {
(0, 0) => println!("FizzBuzz"),
(0, _) => println!("Fizz"),
(_, 0) => println!("Buzz"),
_ => println!("{}", n)
}
}
}
note: the msvc targets depend on the msvc linker but `link.exe` was not foundCargoは、まだVS2017のパスを認識できていないようです。
note: please ensure that VS 2013 or VS 2015 was installed with the Visual C++ option
error: aborting due to previous error