From 4b75f322f9260db59b376df928829e9b6ba8ee43 Mon Sep 17 00:00:00 2001 From: Thiago Arrais Date: Fri, 28 Dec 2018 17:32:35 -0300 Subject: [PATCH 1/3] move module to file outside dir --- src/{sound/mod.rs => sound.rs} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename src/{sound/mod.rs => sound.rs} (100%) diff --git a/src/sound/mod.rs b/src/sound.rs similarity index 100% rename from src/sound/mod.rs rename to src/sound.rs From ca20c73f52c90c34148b3fe1826f0276803f17c8 Mon Sep 17 00:00:00 2001 From: Thiago Arrais Date: Fri, 28 Dec 2018 17:34:20 -0300 Subject: [PATCH 2/3] add bang --- src/sound/instrument.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sound/instrument.rs b/src/sound/instrument.rs index 3a6b34e..7dbe15d 100644 --- a/src/sound/instrument.rs +++ b/src/sound/instrument.rs @@ -1,4 +1,4 @@ pub fn clarinet() { super::breathe_in(); - println!("clarinet sound!"); + println!("clarinet sound!!"); } From c86d92a050e1a70f83fac89cf05752058c4f6c20 Mon Sep 17 00:00:00 2001 From: I am a bot Date: Fri, 28 Dec 2018 17:46:09 -0300 Subject: [PATCH 3/3] add third bang Co-Authored-By: thiagoarrais --- src/sound/instrument.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sound/instrument.rs b/src/sound/instrument.rs index 7dbe15d..b99f07f 100644 --- a/src/sound/instrument.rs +++ b/src/sound/instrument.rs @@ -1,4 +1,4 @@ pub fn clarinet() { super::breathe_in(); - println!("clarinet sound!!"); + println!("clarinet sound!!!"); }