3
3

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.

Scalaで手っ取り早くHelloWorld

Posted at

Classとか作るのめんどい場合、Appトレイトを継承したシングルトンobjectを使えばよい

HelloWorldApp.scala
object HelloWorldApp extends App {
  val name:String = if (args.length > 0) args(0) else "World";
  println ("Hello %s".format(name))
}

HelloWorldApp.main(args)

行末でmainを呼ばないとscalaコマンドに食わせた時に実行してくれない。

実行してみる。

[masato] $ scala HelloWorldApp.scala Hoge
Hello Hoge
3
3
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
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?