IDE for Kotlin : Eclipse, IntelliJ
https://kotlinlang.org/docs/tutorials/getting-started-eclipse.html
공식 가이드에 IntelliJ, Eclipse 이렇게 2개의 IDE 가 소개되어있다.
그렇다면 익숙한 Eclipse 로 !
상세는 공식 가이드를 참조하면 된다. 아주 간단하다.
1. 기존 Eclipse 에 Kotlin Plugin 설치 : Marketplace 에 검색하면 바로 나옴
2. Perspective 를 Kotlin 으로 변경
3. New - Kotlin Project
4. 생성된 프로젝트의 src 폴더 우클릭하여 New - Kotlin File
이렇게만 하면 된다.
But, 가이드를 그대로 따라한 후 Run as Kotlin Application 시 에러가 발생한다;;
"kotlin_bin which is referenced by the classpath, does not exist."
말그대로 kotlin_bin 을 못찾아서 나는 에러이다.
해결법은
1. 프로젝트 우클릭하여 Properties - Resource - Linked Resources 에서 Linked Resources 탭 선택
2. kotlin_bin 의 Location 을 본인 eclipse 의 workspace 폴더로 지정한다. 프로젝트 폴더 말고 workspace 폴더 루트. ex) C:\Users\CGun\eclipse-workspace
3. Apply and Close 클릭하면 끝
But2, Eclipse 를 쓰지 않는 것이 좋다. 기본적인 Ctrl + Space 가 거의 지원되지 않는다. 완성도가 떨어짐.
IntelliJ 버전 중 Community 버전은 무료이므로 이걸 매우매우 권장합니다.
에러해결 출처 : https://discuss.kotlinlang.org/t/in-the-eclipise-running-lib-cant-find-the-kotlin-bin/6188/2