Merge pull request #1 from m1xb3r/main

Intro
This commit is contained in:
m6r 2022-11-17 17:18:42 +01:00 committed by GitHub
commit 4c4ee64459
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 26 additions and 23 deletions

View File

@ -1,8 +1,11 @@
// functions1.rs
// Execute `rustlings hint functions1` or use the `hint` watch subcommand for a hint.
// I AM NOT DONE
fn main() {
call_me();
call();
}
fn call () {
}

View File

@ -1,13 +1,13 @@
// functions2.rs
// Execute `rustlings hint functions2` or use the `hint` watch subcommand for a hint.
// I AM NOT DONE
fn main() {
call_me(3);
}
fn call_me(num:) {
fn call_me(num:u8) {
for i in 0..num {
println!("Ring! Call number {}", i + 1);
}

View File

@ -1,10 +1,10 @@
// functions3.rs
// Execute `rustlings hint functions3` or use the `hint` watch subcommand for a hint.
// I AM NOT DONE
fn main() {
call_me();
call_me(9);
}
fn call_me(num: u32) {

View File

@ -7,14 +7,14 @@
// in the signatures for now. If anything, this is a good way to peek ahead
// to future exercises!)
// I AM NOT DONE
fn main() {
let original_price = 51;
println!("Your sale price is {}", sale_price(original_price));
}
fn sale_price(price: i32) -> {
fn sale_price(price: i8) -> i8 {
if is_even(price) {
price - 10
} else {
@ -22,6 +22,6 @@ fn sale_price(price: i32) -> {
}
}
fn is_even(num: i32) -> bool {
fn is_even(num: i8) -> bool {
num % 2 == 0
}

View File

@ -1,7 +1,7 @@
// functions5.rs
// Execute `rustlings hint functions5` or use the `hint` watch subcommand for a hint.
// I AM NOT DONE
fn main() {
let answer = square(3);
@ -9,5 +9,5 @@ fn main() {
}
fn square(num: i32) -> i32 {
num * num;
num * num
}

View File

@ -2,9 +2,9 @@
// Make me compile!
// Execute `rustlings hint variables1` or use the `hint` watch subcommand for a hint.
// I AM NOT DONE
fn main() {
x = 5;
let x = 5;
println!("x has the value {}", x);
}

View File

@ -1,10 +1,10 @@
// variables2.rs
// Execute `rustlings hint variables2` or use the `hint` watch subcommand for a hint.
// I AM NOT DONE
fn main() {
let x;
let x = 19;
if x == 10 {
println!("x is ten!");
} else {

View File

@ -1,9 +1,9 @@
// variables3.rs
// Execute `rustlings hint variables3` or use the `hint` watch subcommand for a hint.
// I AM NOT DONE
fn main() {
let x: i32;
let x: i32 = -25;
println!("Number {}", x);
}

View File

@ -1,10 +1,10 @@
// variables4.rs
// Execute `rustlings hint variables4` or use the `hint` watch subcommand for a hint.
// I AM NOT DONE
fn main() {
let x = 3;
let mut x = 3;
println!("Number {}", x);
x = 5; // don't change this line
println!("Number {}", x);

View File

@ -1,11 +1,11 @@
// variables5.rs
// Execute `rustlings hint variables5` or use the `hint` watch subcommand for a hint.
// I AM NOT DONE
fn main() {
let number = "T-H-R-E-E"; // don't change this line
println!("Spell a Number : {}", number);
number = 3; // don't rename this variable
let mut number = 3; // don't rename this variable
println!("Number plus two is : {}", number + 2);
}

View File

@ -1,9 +1,9 @@
// variables6.rs
// Execute `rustlings hint variables6` or use the `hint` watch subcommand for a hint.
// I AM NOT DONE
const NUMBER = 3;
const NUMBER: u8 = 3;
fn main() {
println!("Number {}", NUMBER);
}