1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-09-16 10:51:42 +02:00

Only take a u8 to avoid huge output

This commit is contained in:
mo8it 2024-08-17 14:59:00 +02:00
parent 36f315c344
commit 69b4fd49fc
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
fn call_me(num: u32) {
fn call_me(num: u8) {
for i in 0..num {
println!("Ring! Call number {}", i + 1);
}

View File

@ -1,4 +1,4 @@
fn call_me(num: u32) {
fn call_me(num: u8) {
for i in 0..num {
println!("Ring! Call number {}", i + 1);
}