Merge pull request #236 from jrvidal/master

fix(primitive_types4): update outdated comment
This commit is contained in:
marisa 2019-11-12 13:00:28 +01:00 committed by GitHub
commit 57a837bde6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -1,11 +1,11 @@
// primitive_types4.rs
// Get a slice out of Array a where the ??? is so that the `if` statement
// returns true. Execute `rustlings hint primitive_types4` for hints!!
// Get a slice out of Array a where the ??? is so that the test passes.
// Execute `rustlings hint primitive_types4` for hints!!
// I AM NOT DONE
#[test]
fn main() {
fn slice_out_of_array() {
let a = [1, 2, 3, 4, 5];
let nice_slice = ???