diff options
| author | apogeeoak <59737221+apogeeoak@users.noreply.github.com> | 2021-04-26 20:28:17 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-26 20:28:17 -0400 |
| commit | 9b8de65525a5576b78cf0c8e4098cdd34296338f (patch) | |
| tree | 7f0ff346df8a7f544398bdc97a6d4dd97c548333 /exercises | |
| parent | 21c9f44168394e08338fd470b5f49b1fd235986f (diff) | |
fix(intro1): Add compiler error explanation.
Diffstat (limited to 'exercises')
| -rw-r--r-- | exercises/intro/intro1.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/exercises/intro/intro1.rs b/exercises/intro/intro1.rs index 83a78e6..1c4582d 100644 --- a/exercises/intro/intro1.rs +++ b/exercises/intro/intro1.rs @@ -16,4 +16,8 @@ fn main() { println!(r#" | | | |_| \__ \ |_| | | | | | (_| \__ \ "#); println!(r#" |_| \__,_|___/\__|_|_|_| |_|\__, |___/ "#); println!(r#" |___/ "#); + println!(); + println!("This exercise compiles successfully. The remaining exercises contain a compiler"); + println!("or logic error. The central concept behind Rustlings is to fix these errors and"); + println!("solve the exercises. Good luck!"); } |
