From 3405fc0b9a2cbb398906722f2456d7ac62727b10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivica=20=C5=A0imi=C4=87?= <simicivica10@gmail.com> Date: Fri, 5 Jul 2019 23:07:47 +0200 Subject: [PATCH] test3 --- exercises/test3.rs | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/exercises/test3.rs b/exercises/test3.rs index e94b069..9551c2c 100755 --- a/exercises/test3.rs +++ b/exercises/test3.rs @@ -11,14 +11,14 @@ fn string_slice(arg: &str) { println!("{}", arg); } fn string(arg: String) { println!("{}", arg); } fn main() { - ("blue"); - ("red".to_string()); - (String::from("hi")); - ("rust is fun!".to_owned()); - ("nice weather".into()); - (format!("Interpolation {}", "Station")); - (&String::from("abc")[0..1]); - (" hello there ".trim()); - ("Happy Monday!".to_string().replace("Mon", "Tues")); - ("mY sHiFt KeY iS sTiCkY".to_lowercase()); + string_slice("blue"); + string("red".to_string()); + string(String::from("hi")); + string("rust is fun!".to_owned()); + string_slice("nice weather".into()); + string(format!("Interpolation {}", "Station")); + string_slice(&String::from("abc")[0..1]); + string_slice(" hello there ".trim()); + string("Happy Monday!".to_string().replace("Mon", "Tues")); + string("mY sHiFt KeY iS sTiCkY".to_lowercase()); }