mirror of
https://github.com/notohh/rustlings.git
synced 2024-12-17 22:58:08 -05:00
Only take a u8 to avoid huge output
This commit is contained in:
parent
36f315c344
commit
69b4fd49fc
2 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue