mirror of
https://git.aramjonghu.dev/AramJonghu/rustlings.git
synced 2026-09-05 09:43:31 +02:00
progress variables
This commit is contained in:
@@ -1,4 +1,7 @@
|
||||
// TODO: Add some function with the name `call_me` without arguments or a return value.
|
||||
fn call_me() {
|
||||
|
||||
}
|
||||
|
||||
fn main() {
|
||||
call_me(); // Don't change this line
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
// TODO: Add the missing type of the argument `num` after the colon `:`.
|
||||
fn call_me(num:) {
|
||||
fn call_me(num:i32) {
|
||||
for i in 0..num {
|
||||
println!("Ring! Call number {}", i + 1);
|
||||
}
|
||||
|
||||
@@ -6,5 +6,5 @@ fn call_me(num: u8) {
|
||||
|
||||
fn main() {
|
||||
// TODO: Fix the function call.
|
||||
call_me();
|
||||
call_me(32);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user