summaryrefslogtreecommitdiff
path: root/exercises/modules/modules1.rs
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/modules/modules1.rs')
-rw-r--r--exercises/modules/modules1.rs33
1 files changed, 1 insertions, 32 deletions
diff --git a/exercises/modules/modules1.rs b/exercises/modules/modules1.rs
index 0e092c5..c50d62f 100644
--- a/exercises/modules/modules1.rs
+++ b/exercises/modules/modules1.rs
@@ -1,5 +1,5 @@
// modules1.rs
-// Make me compile! Scroll down for hints :)
+// Make me compile! Execute `rustlings hint modules1` for hints :)
mod sausage_factory {
fn make_sausage() {
@@ -10,34 +10,3 @@ mod sausage_factory {
fn main() {
sausage_factory::make_sausage();
}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-// Everything is private in Rust by default-- but there's a keyword we can use
-// to make something public! The compiler error should point to the thing that
-// needs to be public.