Skip to content

Instantly share code, notes, and snippets.

@5nyper
Created February 1, 2015 02:11
Show Gist options
  • Save 5nyper/8ae6029e4312d3d71554 to your computer and use it in GitHub Desktop.
Save 5nyper/8ae6029e4312d3d71554 to your computer and use it in GitHub Desktop.
conversion
fn main() {
let mut i = 20is;
loop {
if i % 19 == 0 && i % 18 == 0 && i % 17 == 0 && i % 16 == 0 && i % 15 == 0 && i % 14 == 0
&& i % 13 == 0 && i % 12 == 0 && i % 11 == 0 {
print!("result: {}", i);
break;
}
i += 20;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment