https://kotlinlang.org logo
Title
s

sodiqoladeni

01/12/2018, 2:49 AM
Hi everyone, have decided to learn Kotlin but im unable to see a tangible pdf online that talk about kotlin without using it for Android, who has a good pdf (like head first kotlin) to start with or link to online resources that that teaches normal programming in kotlin. Regards
h

Hohenhiem

01/12/2018, 2:52 AM
if your problem is the ide, you can just download intelliJ and it already have kotlin configurations.
c

cedric

01/12/2018, 2:54 AM
s

sodiqoladeni

01/12/2018, 3:01 AM
Not only the compiler, the documentation is too technical to flow along with, i will appreciate if another pdf link can be provided
g

gildor

01/12/2018, 3:05 AM
Compiler? This PDF contains all kotlin docs from kotlinlang.org. They are really good and simple. Explains basic syntax, idioms, interop with different platforms, code style and so on.
c

cedric

01/12/2018, 3:07 AM
Agreed, this doc is reference indeed but it's written in plain English and covers both language and practical examples with library uses
g

gildor

01/12/2018, 3:12 AM
@sodiqoladeni Depends what you want to know of course. Maybe easiest way just to check Getting started section on https://kotlinlang.org/docs/tutorials
s

sodiqoladeni

01/12/2018, 3:15 AM
Well have started reading the docs offcourse since knowledge is all i want, i just feel there should be a better pdf (book) just like other language like java and c# , i dont feel confortable reading language docs
g

gildor

01/12/2018, 3:18 AM
May you show an example of such pdf for java or C#?
s

sodiqoladeni

01/12/2018, 3:24 AM
Head first C# @gildor
g

gildor

01/12/2018, 3:31 AM
It’s book. You can check books section https://kotlinlang.org/docs/books.html “Kotlin in Action” is a book from Kotlin Team
s

sodiqoladeni

01/12/2018, 3:35 AM
Kotlin in Action is a book specifically for Android using Kotlin, i will continue with the documentation tho
g

gildor

01/12/2018, 3:35 AM
it’s not true
Kotlin in Action has nothing about Android, it’s only about language itself and not related to Android
s

sodiqoladeni

01/12/2018, 3:38 AM
Ok, i will try and get the pdf then
Or dont know if you can send it to me if you have one
g

gildor

01/12/2018, 3:40 AM
This is not a chat with pirate books
s

sodiqoladeni

01/12/2018, 3:41 AM
I guess i can use kotlin for desktop app since it extends java features, does the book covers that too
g

gildor

01/12/2018, 3:41 AM
If you need some free stuff, just use docs, they are really simple, also try Kotlin Koans https://kotlinlang.org/docs/tutorials/koans.html
This book covers language itself not specific Java API. If you need tutorial about Java FX or any other Java framework, just find book/tutorial about Java FX and use Kotlin instead of Java. Kotlin has full interop with Java and you can use any Java API. Kotlin IDE plugin even can convert Java code to Kotlin (for example if you want easely convert some code snippet from tutorial)
s

sodiqoladeni

01/12/2018, 3:44 AM
Alrt man, thanks for your time 🙌
g

gildor

01/12/2018, 3:44 AM
You can check interop section in docs https://kotlinlang.org/docs/reference/java-interop.html
You are welcome