public/subjects/negative_spelling/main.rs

7 lines
125 B
Rust

use negative_spelling::*;
fn main() {
println!("{}", negative_spell(-1234));
println!("{}", negative_spell(100));
}