On Kotlin track. I know I’ve seen a few as I’ve gone.
Day 4 “Paratheses” instead of parentheses. I’ll report these unless y’all reply otherwise.
1 Like
also in the same lesson this example of Kotlin code triggers errors due to semicolons (in addition to the intentional scope error). I assume it is the java example
1 Like
Yup, thanks! Keep them coming. I’ll fix as they come in.
Lesson 13: Array Search.
Should be “Next, let’s revisit the code we wrote for array search, rewrite it AS a method, and then test it using some sample inputs.”
Lesson16 null:
This lesson lesson → this lesson’s lesson is all about nothing
Lesson 16: Safely working with null
Happily Kotlin provides us with a lot of help here! We’ll get to know Kotlin’s
null
safely (this should be safety) capabilities bit-by-bit as we go. But here’s a few tips to get us started.
Lesson 23
- Execution: the Kotlin compiler produces a file containing bytecode, which can then be executed. This is when -->you<-- program actually runs and does whatever you’ve instructed it to do. There are other errors that can occur at this stage.
That should be YOUR