2019/06/11

[Kotlin] 第一支 Hello World

markdown Kotlin 快速入門第一發: 一定要來寫一下 Hello World ### 環境 - Windows 10 - Java SDK 1.8 - Kotlin Compiler v1.3.31 ### Command Line Compiler 下載 [Command Line Compiler v1.3.31](https://github.com/JetBrains/kotlin/releases/tag/v1.3.31) 下載解壓後指定系統環境路徑至 `kotlinc/bin` 確認版本指令: ``` $ kotlinc -version ``` 輸出如下就表示可以正確執行 CLI ``` info: kotlinc-jvm 1.3.31 (JRE 1.8.0_152-b16) ``` ### 建立第一支程式 建立一個 `hello.kt` 檔案 ```java fun main(args: Array) { println("Hello, World!") } ``` 編譯檔案 ``` $ kotlinc hello.kt -include-runtime -d hello.jar ``` 執行 ``` $ java -jar hello.jar ``` 輸出結果 ``` Hello, World! ``` 很久沒寫 Java,只是最近一直聽到 Kotlin 就來玩一下~ ### References - [Working with the Command Line Compiler](https://kotlinlang.org/docs/tutorials/command-line.html)

沒有留言: