What would be a good book to teach someone Kotlin ...
# announcements
y
What would be a good book to teach someone Kotlin with? Like a complete beginner
s
you’re liable to get a lot of folks telling you Kotlin’s a bad language for absolute beginners, lots of java idiosyncrasies and whatnot
I don’t think there’s a whole lot of literature out there for true “absolute” beginners ’cause the language design was kinda aimed towards folks who already knew Java or were kinda familiar with the JVM
y
@Shawn I just don't see any good documentation for a curriculum. I'm thinking I can just switch him to the Kotlin life later on when we start Android development.
s
it’s pretty easy to pick up after you get the hang of Java so ¯\_(ツ)_/¯
y
In that case do you know of any good books in Java? Something good to teach with.
s
I mean, there’s the usual suggestions
Head-First Java, Thinking in Java, Effective Java
1
y
I don't know what the usual suggestions are.
I'm looking at Core Java right now
s
also a decent option but maybe a bit dense for absolute beginners
suppose it depends on the person though
y
Yeah I want something simple. Something like automating the boring stuff with python.
k
First -> Core Java Fundamentals by Horstmann. Later Kotlin in Action. You need to at least know a little bit of Java ( Collections, Multithreading, Generics etc ) to use Kotlin since large part of Kotlin is just wrapped up Java