diff --git a/examples/bare3.rs b/examples/bare3.rs index 272d9fbebbcaf788f36c98035b24ccbd8f87bf4c..f3bdf0891cc9a697b9602223431368424fc980cd 100644 --- a/examples/bare3.rs +++ b/examples/bare3.rs @@ -49,21 +49,34 @@ fn main() { // // what is the output in the ITM console // ** your answer here ** +// s = ABCD +// bs = [65, 66 ,67, 68] +// iteratie over slice +// 65,66,67,68 +// iterate iterate using (raw) indexing +// 65,66,67,68 +// a = AAAA // // what is the type of `s` // ** your answer here ** +// String // // what is the type of `bs` // ** your answer here ** +// aray u8 // // what is the type of `c` // ** your answer here ** +// u8 // // what is the type of `a` // ** your answer here ** +// array u8 +// contains [65,65,65,65] // // what is the type of `i` // ** your answer here ** +// usize // // commit your answers (bare3_1) //