-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added Explanations #15
Added Explanations #15
Conversation
Solved issues:
Added features:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Delete the .idea
folder from the repository.
Split this in two pull requests, one that fixes the existing chapters and one that adds the extra chapter. |
lessons/en/chapter_4.yaml
Outdated
content_markdown: > | ||
In Rust, `panic!` is a macro used to stop the execution of the program | ||
without a recoverable error. When a panic occurs, the program immediately | ||
stop, unwinding the stack and cleaning up resources along the way. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
stops*
lessons/en/chapter_9.yaml
Outdated
content_markdown: > | ||
The `extern crate` directive was used in older versions of Rust (before the 2018 edition). | ||
|
||
Now, is no longer required to use `extern crate` in code. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it is no longer*
The changes are split in the following two different Pull Request:
|
Here are some changes I made and my approach of Tour of Rust: