mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
225 B
8 lines
225 B
1 year ago
|
use prime_checker::*;
|
||
|
|
||
|
fn main() {
|
||
|
println!("Is {} prime? {:?}", 2, prime_checker(2));
|
||
|
println!("Is {} prime? {:?}", 14, prime_checker(14));
|
||
|
println!("Is {} prime? {:?}", 2147483647, prime_checker(2147483647));
|
||
|
}
|