From 0a1d8009bf678d8ea457f124c4e3adf6b6addf75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20=C4=8Cert=C3=ADk?= Date: Sun, 12 Jan 2020 20:39:56 -0700 Subject: Simplify the Rust code --- src/main.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src') diff --git a/src/main.rs b/src/main.rs index 9252c56..2a75e85 100644 --- a/src/main.rs +++ b/src/main.rs @@ -30,9 +30,7 @@ fn build() { for file in &files { println!("File: {}", file.to_str().unwrap()); if !file.to_str().unwrap().ends_with("main.f90") { - let s1:String = files2.to_string(); - let s2:String = file.to_str().unwrap().to_string(); - files2 = s1 + " " + &s2; + files2 = files2 + " " + file.to_str().unwrap(); } } println!("Files: {:?}", files); -- cgit v1.2.3