Programming in Kotlin

Mar 20 2018 · Kotlin 1.2, IntelliJ IDEA 2017.3

Part 1: Core Concepts

03. Kotlin Basics

Episode complete

Play next episode

Next
About this episode
Leave a rating/review
See forum comments
Cinema mode Mark complete Download course materials
Previous episode: 02. Using Intellij Next episode: 04. Comments

Get immediate access to this and 4,000+ other videos and books.

Take your career further with a Kodeco Personal Plan. With unlimited access to over 40+ books and 4,000+ professional videos in a single subscription, it's simply the best investment you can make in your development career.

Learn more Already a subscriber? Sign in.

Notes: 03. Kotlin Basics

Note: Students who watched Your First Kotlin Android App can skip this video (or watch it for a review). Students who did not go through that course should watch this video for a quick crash course.

Correction: The function to convert celsius to Fahrenheit is incorrect. The integers should be doubles to make the converstion correctly. The formula should be:

return 9.0/5.0 * celsius + 32.0