Skip to content
Snippets Groups Projects
Commit 23d51624 authored by August Svensson's avatar August Svensson
Browse files

bare3_1

parent 9fd24ba9
No related branches found
No related tags found
No related merge requests found
...@@ -71,19 +71,19 @@ fn main() -> ! { ...@@ -71,19 +71,19 @@ fn main() -> ! {
// //
// What is the type of `bs`? // What is the type of `bs`?
// //
// ** It is a byte slice. A pointer to an array and the length of that array. ** // ** It is a byte slice. A dynamic array. **
// //
// What is the type of `c`? // What is the type of `c`?
// //
// ** your answer here ** // ** It is an element of bs, a byte **
// //
// What is the type of `a`? // What is the type of `a`?
// //
// ** your answer here ** // ** An array of type u8 with length 4. **
// //
// What is the type of `i`? // What is the type of `i`?
// //
// ** your answer here ** // ** usize (32 or 64-bit unsigned.) from the str::len() **
// //
// Commit your answers (bare3_1) // Commit your answers (bare3_1)
// //
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment