0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Scala の新規プロジェクトを雑に作成する

Posted at

目標

エディターで補完を効かせながらScalaをコーディングできるようにする。

手順

プロジェクトを新規作成する。

sbt new scala/scala3.g8

# project名は、my-projectにした。

editorを開いて、コーディングする。

sbt compile
sbt run

# あるいは、sbtのshellに入る。
sbt
> compile
> run
> ~compile # --watch mode
> ~run     # --watch mode

その他

もっと良い方法があればupdateする。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?