summaryrefslogtreecommitdiff
path: root/exercises/modules/modules1.rs
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/modules/modules1.rs')
-rwxr-xr-xexercises/modules/modules1.rs43
1 files changed, 43 insertions, 0 deletions
diff --git a/exercises/modules/modules1.rs b/exercises/modules/modules1.rs
new file mode 100755
index 0000000..0e092c5
--- /dev/null
+++ b/exercises/modules/modules1.rs
@@ -0,0 +1,43 @@
+// modules1.rs
+// Make me compile! Scroll down for hints :)
+
+mod sausage_factory {
+ fn make_sausage() {
+ println!("sausage!");
+ }
+}
+
+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.