6: Add solutions for section "primitive_types".

[?]
Aaw9nJhsNmfzFih9mKyNw9mV8CgERXJkRa1kK1Kx3LQH
Aug 6, 2021, 1:26 PM
FXWE2GMJ44UWYHQSXJTQLAL6Z2LDMFJVVRUZZSSLUBMGZ6PKH5CQC

Dependencies

Change contents

  • edit in exercises/primitive_types/primitive_types6.rs at line 5
    [2.113636][2.113636:113654]()
    // I AM NOT DONE
  • replacement in exercises/primitive_types/primitive_types6.rs at line 10
    [2.113771][2.113771:113793]()
    let second = ???;
    [2.113771]
    [2.113793]
    let second = numbers.1;
  • edit in exercises/primitive_types/primitive_types5.rs at line 4
    [2.114061][2.114061:114079]()
    // I AM NOT DONE
  • replacement in exercises/primitive_types/primitive_types5.rs at line 7
    [2.114131][2.114131:114170]()
    let /* your pattern here */ = cat;
    [2.114131]
    [2.114170]
    let (name, age) = cat;
  • edit in exercises/primitive_types/primitive_types4.rs at line 4
    [2.114419][2.114419:114437]()
    // I AM NOT DONE
  • replacement in exercises/primitive_types/primitive_types4.rs at line 9
    [2.114502][2.114502:114527]()
    let nice_slice = ???
    [2.114502]
    [2.114527]
    let nice_slice = &a[1..=3];
  • edit in exercises/primitive_types/primitive_types3.rs at line 4
    [2.114763][2.114763:114781]()
    // I AM NOT DONE
  • replacement in exercises/primitive_types/primitive_types3.rs at line 6
    [2.114794][2.114794:114810]()
    let a = ???
    [2.114794]
    [2.114810]
    let a = [0; 100];
  • edit in exercises/primitive_types/primitive_types2.rs at line 4
    [2.115155][2.115155:115173]()
    // I AM NOT DONE
  • replacement in exercises/primitive_types/primitive_types2.rs at line 17
    [2.115474][2.115474:115552]()
    let // Finish this line like the example! What's your favorite character?
    [2.115474]
    [2.115552]
    let your_character = 'a'; // Finish this line like the example! What's your favorite character?
  • edit in exercises/primitive_types/primitive_types1.rs at line 4
    [2.116104][2.116104:116122]()
    // I AM NOT DONE
  • replacement in exercises/primitive_types/primitive_types1.rs at line 13
    [2.116250][2.116250:116329]()
    let // Finish the rest of this line like the example! Or make it be false!
    [2.116250]
    [2.116329]
    let is_evening = true; // Finish the rest of this line like the example! Or make it be false!