5
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Kotlin入門(1)開発環境

Last updated at Posted at 2017-11-04

友達にKotlinを説明したくてネットを探してみてもあまりいい入門用の文がなかったので自分なりにKotlinのホームページからまとめてみました。
(ホームページの省略されたリンクがkotl.inってっかっこいいですねw)

開発環境

Intellij IDEAでやるのが一番おすすめです。
他のやり方もありますが多分一番かんたんです。

インストールの仕方については他のサイトなどに色々あるので見てみてください。(気が向いたら書くかも)

プロジェクトの作成

Kotlin -> Kotlin/JVM を選択してNext

Kotlin -> Kotlin/JVM

Project name にプロジェクトの名前を入れてFinish

set project name

Hello World

定番のHello Worldから始めていきましょう
(プロジェクト名)/srcで右クリック。
New -> Kotlin File/Classを選択
NameHelloWorld.ktにしましょう

Set File Name

とりあえず書こう

コピペはあまりおすすめしません
めっちゃ自動補完してくれるのでそれに頼って行きましょう(今回はあまりないかも)

fun main(args: Array<String>){
    println("Hello World!")
}

※大文字小文字には気をつけてください

とりあえず実行

編集画面を右クリックして**「Run 'HelloWorld.kt'」**をクリック

Hello World!

上のように表示されればOK!

次回

変数について

5
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?