summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-04-26init new cargo projectolivia
2018-04-26move old files to a separate directoryolivia
2018-04-26wipe readmeolivia
2018-03-06Regenerate READMECarol (Nichols || Goulding)
2018-03-05Make a trivial change to make sure the readme gets regeneratedCarol (Nichols || Goulding)
2018-03-05Not having anything to commit isn't an errorCarol (Nichols || Goulding)
2018-03-05Regenerate READMECarol (Nichols || Goulding)
2018-03-05lol i know how to use git i swearCarol (Nichols || Goulding)
2018-03-05Origin already exists, oopsCarol (Nichols || Goulding)
2018-03-04Auto commit changes to the READMECarol (Nichols || Goulding)
Let's see if this infinite loops or not...
2018-03-04Start of trying to make travis update the readmeCarol (Nichols || Goulding)
2018-03-04Merge remote-tracking branch 'origin/pr/72'Carol (Nichols || Goulding)
2018-03-04Update generated READMECarol (Nichols || Goulding)
2018-03-04Merge pull request #63 from bjornwsv/patch-1Carol (Nichols || Goulding)
Update modules2.rs
2018-03-04Update the updated book linksCarol (Nichols || Goulding)
2018-03-04Merge remote-tracking branch 'origin/pr/62'Carol (Nichols || Goulding)
2018-03-04Update to btbytes' prlink because they merged my PR already!!Carol (Nichols || Goulding)
2018-03-04Fix line numbersCarol (Nichols || Goulding)
Fixes #69.
2018-03-04Don't be lazy, actually read the file instead of including it at compile timeCarol (Nichols || Goulding)
2018-03-04Make a handlebars helper that uses prlink to generate a link from a fileCarol (Nichols || Goulding)
2018-03-04Redo line wrapping at 100 charsCarol (Nichols || Goulding)
2018-03-04Introduce handlebars to be able to do templatingCarol (Nichols || Goulding)
2018-03-04Start a script to regenerate README.md from a templateCarol (Nichols || Goulding)
So far this doesn't actually do any templating, just adds a note about the README being autogenerated :)
2018-03-04Fixed two typos in hinttextmaarten
2018-03-02Add filenames to the linkCarol (Nichols || Goulding)
2018-02-21Added filename to top of .rs filesRobert Lugg
2018-02-20Merge pull request #67 from robertlugg/patch-1Carol (Nichols || Goulding)
Link to second edition of book
2018-02-19Link to second edition of bookRobert M Lugg
2017-09-23Update modules2.rsbjornwsv
Your wish seems to have been granted:) The compiler now says: error[E0603]: constant `democrat` is private
2017-09-02Changed book links to second edition.Stephen Slatky
2017-06-18Merge pull request #61 from DineshMv/masterCarol (Nichols || Goulding)
URL's updated as per first edition
2017-06-17links updateddineshmv
2017-03-19Link edits + new exs from jan-schreib, mwilli20, & QuietMisdreavus! ☄️Carol (Nichols || Goulding)
2017-03-19Word wrap for the playgroundCarol (Nichols || Goulding)
2017-03-19Merge pull request #57 from QuietMisdreavus/macrosCarol (Nichols || Goulding)
add macros examples
2017-03-19Merge pull request #56 from mwilli20/patch-1Carol (Nichols || Goulding)
Create iterators4.rs
2017-03-19Merge pull request #54 from jan-schreib/patch-1Carol (Nichols || Goulding)
ex1 is compiling
2017-03-17add macros4 exampleQuietMisdreavus
2017-03-17add macros examplesQuietMisdreavus
2017-01-05Create iterators4.rsMatthew Williamson
Tackles https://github.com/carols10cents/rustlings/issues/15 . I think this allows for varying levels of difficulty depending on a users background. But ideally people can move there way up from 1, 2, 3 (Numbers below). 1. let mut result = 1; for i in 1..x + 1 { result *= i; } result 2. match x { 0 | 1 => 1, x => x * factorial(x - 1), } 3. (1..x + 1).product()
2017-01-04ex1 is compilingJan S
While trying your exercises I noticed that the ex1.rs code is already compiling.
2016-08-15changed URLs to https scheme where possiblesarge
2016-07-05Incorporate changes from @pindell-matt! 🚀Carol (Nichols || Goulding)
2016-07-04Update "strings2.rs" linkMatt Pindell
Add 1 new-line to the "strings2.rs" link on rust playground so that the hints at the bottom are completely obscured on initial load. Used the "Shorten Link" option from the Playground to create the new url.
2016-06-21Too many dashes oopsCarol (Nichols || Goulding)
2016-06-21Add more hints, better test failures, etc to errorsnCarol (Nichols || Goulding)
2016-06-21Add another another error exerciseCarol (Nichols || Goulding)
2016-06-21Add another error exerciseCarol (Nichols || Goulding)
2016-06-16Update the readme links, oopsCarol (Nichols || Goulding)
2016-06-14Create tests for if1.rsDaan van Berkel
This provides standardize feedback if a solution is correct. Fixes #46.