SlideShare a Scribd company logo
Kotlin
A modern language for modern times
About me
My name is Sergi
20 years playing with computers
I work at
I add bugs to the Android app
We use Kotlin, and we love it!
What is Kotlin?
A language created by JetBrains
Three flavors
Kotlin/JVM
Kotlin/Native (beta)
Kotlin/Javascript
Variables
var name = "John"
var surname: String = "Doe"
var address: Location = Location("my house")
name = "Mike"
surname = "Magic"
address = Location("my other house")
val age = 32
age += 1 //Error: is val
Nullability
var title: String = "Jaws"
title = null //Error: not nullable
var title: String? = "E.T."
genre = null //Fine, name is nullable
Java
String lowercase = null
if (uppercase != null) {
lowercase = uppercase.toLowerCase()
}
Kotlin
var lowercase: String? = null
lowercase = uppercase?.toLowerCase()
Java
if (session.getLoggedCandidate() != null) {
...do a lot of stuff
}
Kotlin
session.loggedCandidate?.let {
...do a lot of stuff
}
Functions & classes
class Person (
val name: String,
val surName: String,
var age: Int,
val address: Address?
) {
val fullName = "$name $surName"
fun grow(years: Int = 1) {
age += years
}
fun getNationality() = address?.country
}
data class Person(
val name: String,
val surName: String,
var age: Int,
val address: Address?
)
fun brother(person:Person, brotherName: String) =
person.copy(name = brotherName)
Lambdas & function type
Java
public interface Callback {
void onFinish(String result);
}
public void operation(Callback callback) {
//perform operation
callback.onFinish(result);
}
operation(new Callback() {
@Override
public void onFinish(String result) {
//Do finishing stuff
}
});
Kotlin
fun operation(callback: (String) -> Unit) {
//perform operation
callback("")
}
operation { result ->
//finish it
}
Streams
Java 7
List<Person> grow(List<Person> persons) {
for (Person person : persons) {
person.setAge(person.getAge()+1);
}
}
Java 8
List<Person> grow(List<Person> persons) {
return persons.stream()
.map (person -> person.setAge(person.getAge()+1))
.toList()
}
Kotlin
fun grow(persons: List<Person>) = persons.map { it.age +1 }
Real case
Transform this:
"(JAVA OR J2EE OR JAVA2E OR JAVA2EE OR JEE) AND (DESARROLLADOR OR DEVELOPER OR PROGRAMADOR OR PROGRAMMER) AND (SISTEMAS OR
SISTEMES)",
"java or j2ee",
"Java",
"Android",
"(JAVA OR J2EE OR JAVA2EE OR JEE OR JAVA2E) AND (PROGRAMADOR OR PROGRAMMER OR DEVELOPER OR DESARROLLADOR)"
Into this:
"java", "J2EE", "JAVA2E", "JAVA2EE", "JEE", "DESARROLLADOR", "DEVELOPER", "PROGRAMADOR", "PROGRAMMER", "SISTEMAS", “SISTEMES",
"android"
private fun mapKeywords(keywords: List<String>) = keywords
.map { it.split(Regex("( AND )|( OR )|(|)| |,|¿|"|'")) }
.flatten()
.filter { it.isNotBlank() }
.distinctBy { it.toLowerCase() }
And much more!
(but we are out of time)
More info
https://kotlinlang.org
https://jetbrains.com
https://play.kotlinlang.org/koans (Kotlin Koans)
https://antonioleiva.com/ (buy his book!)
If you have any question: @sergiandreplace
(and I’ll be around the hackathon)

More Related Content

What's hot (19)

PPTX
Kotlin : Happy Development
Md Sazzad Islam
 
PDF
Swift & ReactiveX – Asynchronous Event-Based Funsies with RxSwift
Aaron Douglas
 
PPTX
What JS? Itself
Lucio Martinez
 
PDF
JavaScriptとLisp
taiju higashi
 
PDF
Functional Reactive Programming without Black Magic (UIKonf 2015)
Jens Ravens
 
PDF
Telegram bots
Andrii Sierkov
 
PDF
Alessandro (cirpo) Cinelli - Dear JavaScript - Codemotion Berlin 2018
Codemotion
 
PDF
Stetl for INSPIRE Data Transformation
Just van den Broecke
 
PDF
Geospatial ETL with Stetl - GeoPython 2016
Just van den Broecke
 
PDF
Taming Rich GML with Stetl - FOSS4G 2013 Nottingham
Just van den Broecke
 
PDF
5 Minute Intro to Stetl
Just van den Broecke
 
PDF
Go for Rubyists
Luka Zakrajšek
 
PPTX
Functional programming in javascript
Boris Burdiliak
 
PDF
Reactive Programming with RxSwift
Scott Gardner
 
PDF
Boost your productivity with Clojure REPL
Kent Ohashi
 
PPT
Groovy
atonse
 
PDF
Reactive programming with RxSwift
Scott Gardner
 
PDF
Streams of information - Chicago crystal language monthly meetup
Brian Cardiff
 
PPTX
[DevDay2018] How does JavaScript actually work? - By: Vi Nguyen, Senior Softw...
DevDay Da Nang
 
Kotlin : Happy Development
Md Sazzad Islam
 
Swift & ReactiveX – Asynchronous Event-Based Funsies with RxSwift
Aaron Douglas
 
What JS? Itself
Lucio Martinez
 
JavaScriptとLisp
taiju higashi
 
Functional Reactive Programming without Black Magic (UIKonf 2015)
Jens Ravens
 
Telegram bots
Andrii Sierkov
 
Alessandro (cirpo) Cinelli - Dear JavaScript - Codemotion Berlin 2018
Codemotion
 
Stetl for INSPIRE Data Transformation
Just van den Broecke
 
Geospatial ETL with Stetl - GeoPython 2016
Just van den Broecke
 
Taming Rich GML with Stetl - FOSS4G 2013 Nottingham
Just van den Broecke
 
5 Minute Intro to Stetl
Just van den Broecke
 
Go for Rubyists
Luka Zakrajšek
 
Functional programming in javascript
Boris Burdiliak
 
Reactive Programming with RxSwift
Scott Gardner
 
Boost your productivity with Clojure REPL
Kent Ohashi
 
Groovy
atonse
 
Reactive programming with RxSwift
Scott Gardner
 
Streams of information - Chicago crystal language monthly meetup
Brian Cardiff
 
[DevDay2018] How does JavaScript actually work? - By: Vi Nguyen, Senior Softw...
DevDay Da Nang
 

Similar to Kotlin, a modern language for modern times (20)

PDF
Introduction kot iin
Jedsada Tiwongvokul
 
PPTX
Kotlin – the future of android
DJ Rausch
 
PDF
Meetup di GDG Italia - Leonardo Pirro - Codemotion Rome 2018
Codemotion
 
PDF
Be More Productive with Kotlin
Brandon Wever
 
PDF
Kotlin/Everywhere GDG Bhubaneswar 2019
Sriyank Siddhartha
 
PDF
Kotlin Overview (PT-BR)
ThomasHorta
 
PDF
Kotlin intro
Elifarley Cruz
 
PPTX
Kotlin on android
Kurt Renzo Acosta
 
PDF
Kotlin Generation
Minseo Chayabanjonglerd
 
PDF
No excuses, switch to kotlin
Thijs Suijten
 
PPTX
Intro to scala
Joe Zulli
 
PPTX
Kotlin Language Features - A Java comparison
Ed Austin
 
PPTX
Kotlin for android
Ahmed Nabil
 
PDF
Kotlin mufix 31 10-2019 by Ahmed Nabil(AhmedNMahran)
Ahmed Nabil
 
PPTX
Kotlin L → ∞
Abdellah SELASSI
 
PDF
Privet Kotlin (Windy City DevFest)
Cody Engel
 
PDF
Bologna Developer Zone - About Kotlin
Marco Vasapollo
 
PDF
A swift introduction to Swift
Giordano Scalzo
 
PDF
Pooya Khaloo Presentation on IWMC 2015
Iran Entrepreneurship Association
 
ODP
AST Transformations
HamletDRC
 
Introduction kot iin
Jedsada Tiwongvokul
 
Kotlin – the future of android
DJ Rausch
 
Meetup di GDG Italia - Leonardo Pirro - Codemotion Rome 2018
Codemotion
 
Be More Productive with Kotlin
Brandon Wever
 
Kotlin/Everywhere GDG Bhubaneswar 2019
Sriyank Siddhartha
 
Kotlin Overview (PT-BR)
ThomasHorta
 
Kotlin intro
Elifarley Cruz
 
Kotlin on android
Kurt Renzo Acosta
 
Kotlin Generation
Minseo Chayabanjonglerd
 
No excuses, switch to kotlin
Thijs Suijten
 
Intro to scala
Joe Zulli
 
Kotlin Language Features - A Java comparison
Ed Austin
 
Kotlin for android
Ahmed Nabil
 
Kotlin mufix 31 10-2019 by Ahmed Nabil(AhmedNMahran)
Ahmed Nabil
 
Kotlin L → ∞
Abdellah SELASSI
 
Privet Kotlin (Windy City DevFest)
Cody Engel
 
Bologna Developer Zone - About Kotlin
Marco Vasapollo
 
A swift introduction to Swift
Giordano Scalzo
 
Pooya Khaloo Presentation on IWMC 2015
Iran Entrepreneurship Association
 
AST Transformations
HamletDRC
 
Ad

More from Sergi Martínez (14)

PDF
What is flutter and why should i care?
Sergi Martínez
 
PDF
What is flutter and why should i care? Lightning talk
Sergi Martínez
 
PDF
Let’s talk about star wars with Dialog Flow
Sergi Martínez
 
PDF
Database handling with room
Sergi Martínez
 
PPTX
Realm or: How I learned to stop worrying and love my app database
Sergi Martínez
 
PPTX
Android data binding
Sergi Martínez
 
PPTX
It's the arts! Playing around with the Android canvas
Sergi Martínez
 
PPT
Smartphones
Sergi Martínez
 
PPT
Introduction to Android Fragments
Sergi Martínez
 
PPTX
Android master class
Sergi Martínez
 
PPTX
Creating multillingual apps for android
Sergi Martínez
 
PPTX
Píldoras android i. Intro - 2ª parte
Sergi Martínez
 
PPTX
Introducción a mobclix
Sergi Martínez
 
PPTX
Admob y yo
Sergi Martínez
 
What is flutter and why should i care?
Sergi Martínez
 
What is flutter and why should i care? Lightning talk
Sergi Martínez
 
Let’s talk about star wars with Dialog Flow
Sergi Martínez
 
Database handling with room
Sergi Martínez
 
Realm or: How I learned to stop worrying and love my app database
Sergi Martínez
 
Android data binding
Sergi Martínez
 
It's the arts! Playing around with the Android canvas
Sergi Martínez
 
Smartphones
Sergi Martínez
 
Introduction to Android Fragments
Sergi Martínez
 
Android master class
Sergi Martínez
 
Creating multillingual apps for android
Sergi Martínez
 
Píldoras android i. Intro - 2ª parte
Sergi Martínez
 
Introducción a mobclix
Sergi Martínez
 
Admob y yo
Sergi Martínez
 
Ad

Recently uploaded (20)

PDF
Digger Solo: Semantic search and maps for your local files
seanpedersen96
 
PDF
How to Hire AI Developers_ Step-by-Step Guide in 2025.pdf
DianApps Technologies
 
PDF
TheFutureIsDynamic-BoxLang witch Luis Majano.pdf
Ortus Solutions, Corp
 
PPTX
Home Care Tools: Benefits, features and more
Third Rock Techkno
 
PDF
The 5 Reasons for IT Maintenance - Arna Softech
Arna Softech
 
PDF
Download Canva Pro 2025 PC Crack Full Latest Version
bashirkhan333g
 
PDF
NEW-Viral>Wondershare Filmora 14.5.18.12900 Crack Free
sherryg1122g
 
PPTX
Tally_Basic_Operations_Presentation.pptx
AditiBansal54083
 
PDF
Automate Cybersecurity Tasks with Python
VICTOR MAESTRE RAMIREZ
 
PDF
MiniTool Partition Wizard Free Crack + Full Free Download 2025
bashirkhan333g
 
PDF
iTop VPN With Crack Lifetime Activation Key-CODE
utfefguu
 
PPTX
Comprehensive Risk Assessment Module for Smarter Risk Management
EHA Soft Solutions
 
PPTX
AEM User Group: India Chapter Kickoff Meeting
jennaf3
 
PPTX
Milwaukee Marketo User Group - Summer Road Trip: Mapping and Personalizing Yo...
bbedford2
 
PDF
SAP Firmaya İade ABAB Kodları - ABAB ile yazılmıl hazır kod örneği
Salih Küçük
 
PPTX
Customise Your Correlation Table in IBM SPSS Statistics.pptx
Version 1 Analytics
 
PDF
Open Chain Q2 Steering Committee Meeting - 2025-06-25
Shane Coughlan
 
PPTX
Finding Your License Details in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
PPTX
Coefficient of Variance in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
PPTX
Agentic Automation Journey Session 1/5: Context Grounding and Autopilot for E...
klpathrudu
 
Digger Solo: Semantic search and maps for your local files
seanpedersen96
 
How to Hire AI Developers_ Step-by-Step Guide in 2025.pdf
DianApps Technologies
 
TheFutureIsDynamic-BoxLang witch Luis Majano.pdf
Ortus Solutions, Corp
 
Home Care Tools: Benefits, features and more
Third Rock Techkno
 
The 5 Reasons for IT Maintenance - Arna Softech
Arna Softech
 
Download Canva Pro 2025 PC Crack Full Latest Version
bashirkhan333g
 
NEW-Viral>Wondershare Filmora 14.5.18.12900 Crack Free
sherryg1122g
 
Tally_Basic_Operations_Presentation.pptx
AditiBansal54083
 
Automate Cybersecurity Tasks with Python
VICTOR MAESTRE RAMIREZ
 
MiniTool Partition Wizard Free Crack + Full Free Download 2025
bashirkhan333g
 
iTop VPN With Crack Lifetime Activation Key-CODE
utfefguu
 
Comprehensive Risk Assessment Module for Smarter Risk Management
EHA Soft Solutions
 
AEM User Group: India Chapter Kickoff Meeting
jennaf3
 
Milwaukee Marketo User Group - Summer Road Trip: Mapping and Personalizing Yo...
bbedford2
 
SAP Firmaya İade ABAB Kodları - ABAB ile yazılmıl hazır kod örneği
Salih Küçük
 
Customise Your Correlation Table in IBM SPSS Statistics.pptx
Version 1 Analytics
 
Open Chain Q2 Steering Committee Meeting - 2025-06-25
Shane Coughlan
 
Finding Your License Details in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
Coefficient of Variance in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
Agentic Automation Journey Session 1/5: Context Grounding and Autopilot for E...
klpathrudu
 

Kotlin, a modern language for modern times