5
4

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のソースコードを読んでみる その1

Posted at

Scalaの文法に手をいれたくなったので、とりあえず、ソースコードを読んでみようと思った。

ソースコードをダウンロードする

まずは、ソースをダウンロードします。
コマンドは以下。

$ git clone https://github.com/scala/scala

コンパイル

試しにコンパイルしてみましょう。
sbtを使うのかなぁ、となんとなく思っていたら、そんなことはなくて、antを使うようです。
コマンドは以下。

$ cd scala
$ ant

これで、15〜20分ぐらいでコンパイルされます。

出来上がった実行ファイルは、

build/pack/bin

にあります。

(つづく)

5
4
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
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?