diff --git a/exercises/if/if1.rs b/exercises/if/if1.rs index 90867545..ec28b28c 100644 --- a/exercises/if/if1.rs +++ b/exercises/if/if1.rs @@ -1,9 +1,13 @@ // if1.rs +// +// Make me compile! +// +// If you need help, open the corresponding README.md or run: rustlings hint if1 // I AM NOT DONE pub fn bigger(a: i32, b: i32) -> i32 { - // Complete this function to return the bigger number! + // TODO: Complete this function to return the bigger number! // Do not use: // - another function call // - additional variables diff --git a/exercises/if/if2.rs b/exercises/if/if2.rs index 80effbdf..4c3509e1 100644 --- a/exercises/if/if2.rs +++ b/exercises/if/if2.rs @@ -1,8 +1,9 @@ // if2.rs - +// // Step 1: Make me compile! // Step 2: Get the bar_for_fuzz and default_to_baz tests passing! -// Execute the command `rustlings hint if2` if you want a hint :) +// +// If you need help, open the corresponding README.md or run: rustlings hint if2 // I AM NOT DONE diff --git a/exercises/macros/macros1.rs b/exercises/macros/macros1.rs index ed0dac85..3cca052f 100644 --- a/exercises/macros/macros1.rs +++ b/exercises/macros/macros1.rs @@ -1,5 +1,8 @@ // macros1.rs -// Make me compile! Execute `rustlings hint macros1` for hints :) +// +// Make me compile! +// +// If you need help, open the corresponding README.md or run: rustlings hint macros1 // I AM NOT DONE diff --git a/exercises/macros/macros2.rs b/exercises/macros/macros2.rs index d0be1236..e93c0ef3 100644 --- a/exercises/macros/macros2.rs +++ b/exercises/macros/macros2.rs @@ -1,5 +1,8 @@ // macros2.rs -// Make me compile! Execute `rustlings hint macros2` for hints :) +// +// Make me compile! +// +// If you need help, open the corresponding README.md or run: rustlings hint macros2 // I AM NOT DONE diff --git a/exercises/macros/macros3.rs b/exercises/macros/macros3.rs index 93a43113..d34790d1 100644 --- a/exercises/macros/macros3.rs +++ b/exercises/macros/macros3.rs @@ -1,6 +1,8 @@ // macros3.rs +// // Make me compile, without taking the macro out of the module! -// Execute `rustlings hint macros3` for hints :) +// +// If you need help, open the corresponding README.md or run: rustlings hint macros3 // I AM NOT DONE diff --git a/exercises/macros/macros4.rs b/exercises/macros/macros4.rs index 3a748078..3097d156 100644 --- a/exercises/macros/macros4.rs +++ b/exercises/macros/macros4.rs @@ -1,5 +1,8 @@ // macros4.rs -// Make me compile! Execute `rustlings hint macros4` for hints :) +// +// Make me compile! +// +// If you need help, open the corresponding README.md or run: rustlings hint macros4 // I AM NOT DONE diff --git a/exercises/modules/modules1.rs b/exercises/modules/modules1.rs index 812dfeef..67d6e988 100644 --- a/exercises/modules/modules1.rs +++ b/exercises/modules/modules1.rs @@ -1,5 +1,8 @@ // modules1.rs -// Make me compile! Execute `rustlings hint modules1` for hints :) +// +// Make me compile! +// +// If you need help, open the corresponding README.md or run: rustlings hint modules1 // I AM NOT DONE diff --git a/exercises/modules/modules2.rs b/exercises/modules/modules2.rs index fde439d1..4e2223c8 100644 --- a/exercises/modules/modules2.rs +++ b/exercises/modules/modules2.rs @@ -1,5 +1,8 @@ // modules2.rs -// Make me compile! Execute `rustlings hint modules2` for hints :) +// +// Make me compile! +// +// If you need help, open the corresponding README.md or run: rustlings hint modules2 // I AM NOT DONE diff --git a/exercises/move_semantics/move_semantics1.rs b/exercises/move_semantics/move_semantics1.rs index e2f5876d..32bea983 100644 --- a/exercises/move_semantics/move_semantics1.rs +++ b/exercises/move_semantics/move_semantics1.rs @@ -1,5 +1,8 @@ // move_semantics1.rs -// Make me compile! Execute `rustlings hint move_semantics1` for hints :) +// +// Make me compile! +// +// If you need help, open the corresponding README.md or run: rustlings hint move_semantics1 // I AM NOT DONE diff --git a/exercises/move_semantics/move_semantics2.rs b/exercises/move_semantics/move_semantics2.rs index bd21fbb7..b8d2be28 100644 --- a/exercises/move_semantics/move_semantics2.rs +++ b/exercises/move_semantics/move_semantics2.rs @@ -1,6 +1,8 @@ // move_semantics2.rs +// // Make me compile without changing line 13! -// Execute `rustlings hint move_semantics2` for hints :) +// +// If you need help, open the corresponding README.md or run: rustlings hint move_semantics2 // I AM NOT DONE diff --git a/exercises/move_semantics/move_semantics3.rs b/exercises/move_semantics/move_semantics3.rs index 43fef74f..ddf35586 100644 --- a/exercises/move_semantics/move_semantics3.rs +++ b/exercises/move_semantics/move_semantics3.rs @@ -1,7 +1,9 @@ // move_semantics3.rs +// // Make me compile without adding new lines-- just changing existing lines! // (no lines with multiple semicolons necessary!) -// Execute `rustlings hint move_semantics3` for hints :) +// +// If you need help, open the corresponding README.md or run: rustlings hint move_semantics3 // I AM NOT DONE diff --git a/exercises/move_semantics/move_semantics4.rs b/exercises/move_semantics/move_semantics4.rs index 2a23c710..0f2c5c15 100644 --- a/exercises/move_semantics/move_semantics4.rs +++ b/exercises/move_semantics/move_semantics4.rs @@ -1,8 +1,10 @@ // move_semantics4.rs +// // Refactor this code so that instead of having `vec0` and creating the vector // in `fn main`, we create it within `fn fill_vec` and transfer the // freshly created vector from fill_vec to its caller. -// Execute `rustlings hint move_semantics4` for hints! +// +// If you need help, open the corresponding README.md or run: rustlings hint move_semantics4 // I AM NOT DONE diff --git a/exercises/option/option1.rs b/exercises/option/option1.rs index 602ff1a9..3136a95f 100644 --- a/exercises/option/option1.rs +++ b/exercises/option/option1.rs @@ -1,9 +1,12 @@ // option1.rs -// Make me compile! Execute `rustlings hint option1` for hints +// +// Make me compile! +// +// If you need help, open the corresponding README.md or run: rustlings hint option1 // I AM NOT DONE -// you can modify anything EXCEPT for this function's sig +// You can modify anything EXCEPT for this function's sig fn print_number(maybe_number: Option) { println!("printing: {}", maybe_number.unwrap()); } diff --git a/exercises/option/option2.rs b/exercises/option/option2.rs index c6b83ece..3b249680 100644 --- a/exercises/option/option2.rs +++ b/exercises/option/option2.rs @@ -1,5 +1,8 @@ // option2.rs -// Make me compile! Execute `rustlings hint option2` for hints +// +// Make me compile! +// +// If you need help, open the corresponding README.md or run: rustlings hint option2 // I AM NOT DONE diff --git a/exercises/primitive_types/primitive_types1.rs b/exercises/primitive_types/primitive_types1.rs index 09121392..fce5331e 100644 --- a/exercises/primitive_types/primitive_types1.rs +++ b/exercises/primitive_types/primitive_types1.rs @@ -1,6 +1,9 @@ // primitive_types1.rs +// // Fill in the rest of the line that has code missing! // No hints, there's no tricks, just get used to typing these :) +// +// If you need help, open the corresponding README.md // I AM NOT DONE diff --git a/exercises/primitive_types/primitive_types2.rs b/exercises/primitive_types/primitive_types2.rs index 6576a4d5..2f2b42b0 100644 --- a/exercises/primitive_types/primitive_types2.rs +++ b/exercises/primitive_types/primitive_types2.rs @@ -1,6 +1,9 @@ // primitive_types2.rs +// // Fill in the rest of the line that has code missing! // No hints, there's no tricks, just get used to typing these :) +// +// If you need help, open the corresponding README.md // I AM NOT DONE diff --git a/exercises/primitive_types/primitive_types3.rs b/exercises/primitive_types/primitive_types3.rs index aaa518be..509edae0 100644 --- a/exercises/primitive_types/primitive_types3.rs +++ b/exercises/primitive_types/primitive_types3.rs @@ -1,6 +1,8 @@ // primitive_types3.rs +// // Create an array with at least 100 elements in it where the ??? is. -// Execute `rustlings hint primitive_types3` for hints! +// +// If you need help, open the corresponding README.md or run: rustlings hint primitive_types3 // I AM NOT DONE diff --git a/exercises/primitive_types/primitive_types4.rs b/exercises/primitive_types/primitive_types4.rs index 10b553e9..c1dd7bce 100644 --- a/exercises/primitive_types/primitive_types4.rs +++ b/exercises/primitive_types/primitive_types4.rs @@ -1,6 +1,8 @@ // primitive_types4.rs +// // Get a slice out of Array a where the ??? is so that the test passes. -// Execute `rustlings hint primitive_types4` for hints!! +// +// If you need help, open the corresponding README.md or run: rustlings hint primitive_types4 // I AM NOT DONE diff --git a/exercises/primitive_types/primitive_types5.rs b/exercises/primitive_types/primitive_types5.rs index 680d8d23..60e7db12 100644 --- a/exercises/primitive_types/primitive_types5.rs +++ b/exercises/primitive_types/primitive_types5.rs @@ -1,6 +1,8 @@ // primitive_types5.rs +// // Destructure the `cat` tuple so that the println will work. -// Execute `rustlings hint primitive_types5` for hints! +// +// If you need help, open the corresponding README.md or run: rustlings hint primitive_types5 // I AM NOT DONE diff --git a/exercises/primitive_types/primitive_types6.rs b/exercises/primitive_types/primitive_types6.rs index b8c9b82b..969ef21b 100644 --- a/exercises/primitive_types/primitive_types6.rs +++ b/exercises/primitive_types/primitive_types6.rs @@ -1,7 +1,9 @@ // primitive_types6.rs +// // Use a tuple index to access the second element of `numbers`. // You can put the expression for the second element where ??? is so that the test passes. -// Execute `rustlings hint primitive_types6` for hints! +// +// If you need help, open the corresponding README.md or run: rustlings hint primitive_types6 // I AM NOT DONE diff --git a/exercises/quiz1.rs b/exercises/quiz1.rs index 5c5c355d..68232f20 100644 --- a/exercises/quiz1.rs +++ b/exercises/quiz1.rs @@ -1,18 +1,21 @@ // quiz1.rs -// This is a quiz for the following sections: +// +// This quiz covers the sections: // - Variables // - Functions - +// // Mary is buying apples. One apple usually costs 2 Rustbucks, but if you buy // more than 40 at once, each apple only costs 1! Write a function that calculates -// the price of an order of apples given the order amount. No hints this time! +// the price of an order of apples given the order amount. +// +// No hints this time :) // I AM NOT DONE // Put your function here! // fn ..... { -// Don't modify this function! +// Don't modify this test function! #[test] fn verify_test() { let price1 = calculate_apple_price(35); diff --git a/exercises/quiz2.rs b/exercises/quiz2.rs index de0dce95..48ba44d4 100644 --- a/exercises/quiz2.rs +++ b/exercises/quiz2.rs @@ -1,11 +1,14 @@ // quiz2.rs -// This is a quiz for the following sections: +// +// This quiz covers the sections: // - Strings - +// // Ok, here are a bunch of values-- some are `String`s, some are `&str`s. Your // task is to call one of these two functions on each value depending on what // you think each value is. That is, add either `string_slice` or `string` // before the parentheses on each line. If you're right, it will compile! +// +// No hints this time :) // I AM NOT DONE diff --git a/exercises/quiz3.rs b/exercises/quiz3.rs index fae0eedb..32446b26 100644 --- a/exercises/quiz3.rs +++ b/exercises/quiz3.rs @@ -1,11 +1,13 @@ // quiz3.rs -// This is a quiz for the following sections: +// +// This quiz covers the sections: // - Tests - +// // This quiz isn't testing our function -- make it do that in such a way that // the test passes. Then write a second test that tests that we get the result // we expect to get when we call `times_two` with a negative number. -// No hints, you can do this :) +// +// No hints this time :) // I AM NOT DONE @@ -24,7 +26,7 @@ mod tests { #[test] fn returns_twice_of_negative_numbers() { - // TODO replace unimplemented!() with an assert for `times_two(-4)` + // TODO: replace unimplemented!() with an assert for `times_two(-4)` unimplemented!() } } diff --git a/exercises/quiz4.rs b/exercises/quiz4.rs index 6c47480d..f56ca199 100644 --- a/exercises/quiz4.rs +++ b/exercises/quiz4.rs @@ -1,9 +1,12 @@ // quiz4.rs +// // This quiz covers the sections: // - Modules // - Macros - +// // Write a macro that passes the quiz! No hints this time, you can do it! +// +// No hints this time :) // I AM NOT DONE diff --git a/exercises/standard_library_types/arc1.rs b/exercises/standard_library_types/arc1.rs index d167380c..7ce10c7c 100644 --- a/exercises/standard_library_types/arc1.rs +++ b/exercises/standard_library_types/arc1.rs @@ -1,4 +1,5 @@ // arc1.rs +// // In this exercise, we are given a Vec of u32 called "numbers" with values ranging // from 0 to 99 -- [ 0, 1, 2, ..., 98, 99 ] // We would like to use this set of numbers within 8 different threads simultaneously. @@ -8,15 +9,15 @@ // The third thread (offset 2), will sum 2, 10, 18, ... // ... // The eighth thread (offset 7), will sum 7, 15, 23, ... - +// // Because we are using threads, our values need to be thread-safe. Therefore, // we are using Arc. We need to make a change in each of the two TODOs. - - +// // Make this code compile by filling in a value for `shared_numbers` where the // first TODO comment is, and create an initial binding for `child_numbers` // where the second TODO comment is. Try not to create any copies of the `numbers` Vec! -// Execute `rustlings hint arc1` for hints :) +// +// If you need help, open the corresponding README.md or run: rustlings hint arc1 // I AM NOT DONE diff --git a/exercises/standard_library_types/box1.rs b/exercises/standard_library_types/box1.rs index f312f3d6..df917b93 100644 --- a/exercises/standard_library_types/box1.rs +++ b/exercises/standard_library_types/box1.rs @@ -14,7 +14,7 @@ // // Note: the tests should not be changed // -// Execute `rustlings hint box1` for hints :) +// If you need help, open the corresponding README.md or run: rustlings hint box1 // I AM NOT DONE diff --git a/exercises/standard_library_types/iterators1.rs b/exercises/standard_library_types/iterators1.rs index 3fd519d6..587906eb 100644 --- a/exercises/standard_library_types/iterators1.rs +++ b/exercises/standard_library_types/iterators1.rs @@ -6,7 +6,7 @@ // This module helps you get familiar with the structure of using an iterator and // how to go through elements within an iterable collection. // -// Execute `rustlings hint iterators1` for hints :D +// If you need help, open the corresponding README.md or run: rustlings hint iterators1 // I AM NOT DONE diff --git a/exercises/standard_library_types/iterators2.rs b/exercises/standard_library_types/iterators2.rs index 87b4eaa1..cf6805e9 100644 --- a/exercises/standard_library_types/iterators2.rs +++ b/exercises/standard_library_types/iterators2.rs @@ -1,7 +1,9 @@ // iterators2.rs +// // In this exercise, you'll learn some of the unique advantages that iterators // can offer. Follow the steps to complete the exercise. -// As always, there are hints if you execute `rustlings hint iterators2`! +// +// If you need help, open the corresponding README.md or run: rustlings hint iterators2 // I AM NOT DONE diff --git a/exercises/standard_library_types/iterators3.rs b/exercises/standard_library_types/iterators3.rs index 8c66c05b..0c20c442 100644 --- a/exercises/standard_library_types/iterators3.rs +++ b/exercises/standard_library_types/iterators3.rs @@ -1,10 +1,12 @@ // iterators3.rs +// // This is a bigger exercise than most of the others! You can do it! // Here is your mission, should you choose to accept it: // 1. Complete the divide function to get the first four tests to pass. // 2. Get the remaining tests to pass by completing the result_with_list and // list_of_results functions. -// Execute `rustlings hint iterators3` to get some hints! +// +// If you need help, open the corresponding README.md or run: rustlings hint iterators3 // I AM NOT DONE diff --git a/exercises/standard_library_types/iterators4.rs b/exercises/standard_library_types/iterators4.rs index 88862838..ce41cfa3 100644 --- a/exercises/standard_library_types/iterators4.rs +++ b/exercises/standard_library_types/iterators4.rs @@ -1,9 +1,13 @@ // iterators4.rs +// +// Make the tests pass! +// +// If you need help, open the corresponding README.md or run: rustlings hint iterators4 // I AM NOT DONE pub fn factorial(num: u64) -> u64 { - // Complete this function to return the factorial of num + // TODO: Complete this function to return the factorial of num // Do not use: // - return // Try not to use: diff --git a/exercises/standard_library_types/iterators5.rs b/exercises/standard_library_types/iterators5.rs index 2d97bd46..7ff00f88 100644 --- a/exercises/standard_library_types/iterators5.rs +++ b/exercises/standard_library_types/iterators5.rs @@ -1,5 +1,5 @@ // iterators5.rs - +// // Let's define a simple model to track Rustlings exercise progress. Progress // will be modelled using a hash map. The name of the exercise is the key and // the progress is the value. Two counting functions were created to count the @@ -7,10 +7,10 @@ // imperative style for loops. Recreate this counting functionality using // iterators. Only the two iterator methods (count_iterator and // count_collection_iterator) need to be modified. -// Execute `rustlings hint -// iterators5` for hints. // // Make the code compile and the tests pass. +// +// If you need help, open the corresponding README.md or run: rustlings hint iterators5 // I AM NOT DONE diff --git a/exercises/strings/strings1.rs b/exercises/strings/strings1.rs index 80902444..19519fb0 100644 --- a/exercises/strings/strings1.rs +++ b/exercises/strings/strings1.rs @@ -1,6 +1,8 @@ // strings1.rs +// // Make me compile without changing the function signature! -// Execute `rustlings hint strings1` for hints ;) +// +// If you need help, open the corresponding README.md or run: rustlings hint strings1 // I AM NOT DONE diff --git a/exercises/strings/strings2.rs b/exercises/strings/strings2.rs index 5a2ce74a..e5e1434b 100644 --- a/exercises/strings/strings2.rs +++ b/exercises/strings/strings2.rs @@ -1,6 +1,8 @@ // strings2.rs +// // Make me compile without changing the function signature! -// Execute `rustlings hint strings2` for hints :) +// +// If you need help, open the corresponding README.md or run: rustlings hint strings2 // I AM NOT DONE diff --git a/exercises/structs/structs1.rs b/exercises/structs/structs1.rs index 6d0b2f49..199ecde9 100644 --- a/exercises/structs/structs1.rs +++ b/exercises/structs/structs1.rs @@ -1,5 +1,8 @@ // structs1.rs +// // Address all the TODOs to make the tests pass! +// +// If you need help, open the corresponding README.md or run: rustlings hint structs1 // I AM NOT DONE diff --git a/exercises/structs/structs2.rs b/exercises/structs/structs2.rs index f9c6427d..2ba21243 100644 --- a/exercises/structs/structs2.rs +++ b/exercises/structs/structs2.rs @@ -1,5 +1,8 @@ // structs2.rs +// // Address all the TODOs to make the tests pass! +// +// If you need help, open the corresponding README.md or run: rustlings hint structs2 // I AM NOT DONE diff --git a/exercises/structs/structs3.rs b/exercises/structs/structs3.rs index 8d8b4710..7fc82e80 100644 --- a/exercises/structs/structs3.rs +++ b/exercises/structs/structs3.rs @@ -1,8 +1,10 @@ // structs3.rs +// // Structs contain data, but can also have logic. In this exercise we have // defined the Package struct and we want to test some logic attached to it. // Make the code compile and the tests pass! -// If you have issues execute `rustlings hint structs3` +// +// If you need help, open the corresponding README.md or run: rustlings hint structs3 // I AM NOT DONE diff --git a/exercises/tests/tests1.rs b/exercises/tests/tests1.rs index 50586a19..7b7e880f 100644 --- a/exercises/tests/tests1.rs +++ b/exercises/tests/tests1.rs @@ -1,10 +1,13 @@ // tests1.rs +// // Tests are important to ensure that your code does what you think it should do. // Tests can be run on this file with the following command: // rustlings run tests1 - +// // This test has a problem with it -- make the test compile! Make the test -// pass! Make the test fail! Execute `rustlings hint tests1` for hints :) +// pass! Make the test fail! +// +// If you need help, open the corresponding README.md or run: rustlings hint tests1 // I AM NOT DONE diff --git a/exercises/tests/tests2.rs b/exercises/tests/tests2.rs index 0d981ad1..24667cff 100644 --- a/exercises/tests/tests2.rs +++ b/exercises/tests/tests2.rs @@ -1,6 +1,9 @@ // tests2.rs +// // This test has a problem with it -- make the test compile! Make the test -// pass! Make the test fail! Execute `rustlings hint tests2` for hints :) +// pass! Make the test fail! +// +// If you need help, open the corresponding README.md or run: rustlings hint tests2 // I AM NOT DONE diff --git a/exercises/tests/tests3.rs b/exercises/tests/tests3.rs index 3424f940..6ebc76b1 100644 --- a/exercises/tests/tests3.rs +++ b/exercises/tests/tests3.rs @@ -1,8 +1,10 @@ // tests3.rs +// // This test isn't testing our function -- make it do that in such a way that // the test passes. Then write a second test that tests whether we get the result // we expect to get when we call `is_even(5)`. -// Execute `rustlings hint tests3` for hints :) +// +// If you need help, open the corresponding README.md or run: rustlings hint tests3 // I AM NOT DONE diff --git a/exercises/threads/threads1.rs b/exercises/threads/threads1.rs index f31b317e..916b3724 100644 --- a/exercises/threads/threads1.rs +++ b/exercises/threads/threads1.rs @@ -1,10 +1,13 @@ // threads1.rs -// Make this compile! Execute `rustlings hint threads1` for hints :) +// // The idea is the thread spawned on line 22 is completing jobs while the main thread is // monitoring progress until 10 jobs are completed. Because of the difference between the // spawned threads' sleep time, and the waiting threads sleep time, when you see 6 lines // of "waiting..." and the program ends without timing out when running, // you've got it :) +// Make me compile! +// +// If you need help, open the corresponding README.md or run: rustlings hint threads1 // I AM NOT DONE diff --git a/exercises/traits/traits1.rs b/exercises/traits/traits1.rs index 2ef9e11b..3770e22d 100644 --- a/exercises/traits/traits1.rs +++ b/exercises/traits/traits1.rs @@ -1,4 +1,5 @@ // traits1.rs +// // Time to implement some traits! // // Your task is to implement the trait @@ -7,6 +8,8 @@ // The trait AppendBar has only one function, // which appends "Bar" to any object // implementing this trait. +// +// If you need help, open the corresponding README.md or run: rustlings hint traits1 // I AM NOT DONE @@ -15,7 +18,7 @@ trait AppendBar { } impl AppendBar for String { - //Add your code here + // Add your code here } fn main() { diff --git a/exercises/traits/traits2.rs b/exercises/traits/traits2.rs index 916c3c4b..c7f5aed8 100644 --- a/exercises/traits/traits2.rs +++ b/exercises/traits/traits2.rs @@ -9,6 +9,8 @@ // // No boiler plate code this time, // you can do this! +// +// If you need help, open the corresponding README.md or run: rustlings hint traits2 // I AM NOT DONE @@ -16,7 +18,7 @@ trait AppendBar { fn append_bar(self) -> Self; } -//TODO: Add your code here +// TODO: Add your code here #[cfg(test)] mod tests { diff --git a/exercises/variables/variables1.rs b/exercises/variables/variables1.rs index 4a3af73c..1b3825e6 100644 --- a/exercises/variables/variables1.rs +++ b/exercises/variables/variables1.rs @@ -1,10 +1,12 @@ // variables1.rs -// Make me compile! Execute the command `rustlings hint variables1` if you want a hint :) - +// // About this `I AM NOT DONE` thing: // We sometimes encourage you to keep trying things on a given exercise, // even after you already figured it out. If you got everything working and // feel ready for the next exercise, remove the `I AM NOT DONE` comment below. +// Make me compile! +// +// If you need help, open the corresponding README.md or run: rustlings hint variables1 // I AM NOT DONE diff --git a/exercises/variables/variables2.rs b/exercises/variables/variables2.rs index 7774a8fb..82cc38f5 100644 --- a/exercises/variables/variables2.rs +++ b/exercises/variables/variables2.rs @@ -1,5 +1,8 @@ // variables2.rs -// Make me compile! Execute the command `rustlings hint variables2` if you want a hint :) +// +// Make me compile! +// +// If you need help, open the corresponding README.md or run: rustlings hint variables2 // I AM NOT DONE diff --git a/exercises/variables/variables3.rs b/exercises/variables/variables3.rs index 30ec48ff..95dcd6a0 100644 --- a/exercises/variables/variables3.rs +++ b/exercises/variables/variables3.rs @@ -1,5 +1,8 @@ // variables3.rs -// Make me compile! Execute the command `rustlings hint variables3` if you want a hint :) +// +// Make me compile! +// +// If you need help, open the corresponding README.md or run: rustlings hint variables3 // I AM NOT DONE diff --git a/exercises/variables/variables4.rs b/exercises/variables/variables4.rs index 77f1e9ab..d740ecde 100644 --- a/exercises/variables/variables4.rs +++ b/exercises/variables/variables4.rs @@ -1,5 +1,8 @@ // variables4.rs -// Make me compile! Execute the command `rustlings hint variables4` if you want a hint :) +// +// Make me compile! +// +// If you need help, open the corresponding README.md or run: rustlings hint variables4 // I AM NOT DONE diff --git a/exercises/variables/variables5.rs b/exercises/variables/variables5.rs index da37ae99..fde05a91 100644 --- a/exercises/variables/variables5.rs +++ b/exercises/variables/variables5.rs @@ -1,5 +1,8 @@ // variables5.rs -// Make me compile! Execute the command `rustlings hint variables5` if you want a hint :) +// +// Make me compile! +// +// If you need help, open the corresponding README.md or run: rustlings hint variables5 // I AM NOT DONE diff --git a/exercises/variables/variables6.rs b/exercises/variables/variables6.rs index 98666914..eda26e03 100644 --- a/exercises/variables/variables6.rs +++ b/exercises/variables/variables6.rs @@ -1,5 +1,8 @@ // variables6.rs -// Make me compile! Execute the command `rustlings hint variables6` if you want a hint :) +// +// Make me compile! +// +// If you need help, open the corresponding README.md or run: rustlings hint variables6 // I AM NOT DONE