Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Kotlin 1 year later

Kotlin 1 year later

What you need to know about kotlin after a year of use. A better introduction

Frank Tamre

July 28, 2018
Tweet

More Decks by Frank Tamre

Other Decks in Technology

Transcript

  1. 10:00 am Welcome 10:10 am Introductions 10:25 am Sizzle Reel

    10:45 am IO18 Keynote Viewing 11:20 am Tea Break 11:50 pm PWAs and Flutter Detailed Agenda 1:15 pm Lunch Break 2:30 pm Kotlin + Android 3:40 pm Lightning Talks : Success Stories, IO18 Experience, Android Dev Tips, WTM 05:20 pm Wrap Up / Networking 06:00 pm Goodbye / Networking #IO18ExtendedEldoret #IO18Extended
  2. 1

  3. 2

  4. 3

  5. - Bundled Kotlin Plugin - Kotlin Lint Support (in-IDE) -

    Kotlin Templates for Projects and Activities
  6. Your First Kotlin Program. // Dear World I made it

    Program fun main(args : Array<String>) { println("Dear World, I made it!:D") } @tamrefrank
  7. How you do it in JAVA // Hello World Program

    class HelloWorldKt { public static void main(String[] args) { System.out.println("Hello, World!"); } } @tamrefrank
  8. What you can look at: • Variables • Primitive types

    and Strings • Expressions VS statements • Conditional Statements • Arrays and Lists • Loops @tamrefrank