-
Notifications
You must be signed in to change notification settings - Fork 531
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
Add empty src/lib.rs files to all exercises #270
Conversation
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.
Thanks, great work.
I verified via for i in exercises/*/; do if [ ! -f $i/src/lib.rs ]; then echo "$i missing"; fi; done
that all exercises now have stub files with this. Given that, and that there was general agreement in the referenced prior issues, it looks like this is good to merge immediately.
(I corrected a typo sill -> still, but of course that didn't stop us) |
Now that we have an empty src/lib.rs for each exercise as of #270, we should ease the process of adding the file by no longer ignoring it.
As done in #270 Example of a failing build because of no src/lib.rs: https://travis-ci.org/exercism/rust/jobs/256643534
* extract concepts from v2 exercise: macros Closes exercism/v3#245 * require mutability concept; remove extraneous note on Hashmap<K, V> * break out a more fine-grained list of concepts * Update languages/reference/exercise-concepts/macros.md Co-Authored-By: Eli Flanagan <[email protected]> Co-authored-by: Eli Flanagan <[email protected]>
* extract concepts from v2 exercise: macros Closes exercism/v3#245 * require mutability concept; remove extraneous note on Hashmap<K, V> * break out a more fine-grained list of concepts * Update languages/reference/exercise-concepts/macros.md Co-Authored-By: Eli Flanagan <[email protected]> Co-authored-by: Eli Flanagan <[email protected]>
See #117, #200, and #269.
Since the jury is sill out on whether/how to provide stub functions, I opted to simply add empty files in this commit. This makes for a smoother user experience, as students will no longer have to invoke
mkdir src; touch src/lib.rs
for every exercise.