Install Scala (macports)
Scalaの本を立ち読みしてたら面白そうだったので、インストールしてみた。対話モードがあるのがPython使いとしてはとっつきやすそうな気がする。
実利的な目標を設定して勉強すると、だいたいは「Pythonで書いたほうが早いぜ」となって触らなくなるので、言語を楽しむバランスを忘れずにいじろうかと思います。
$ sudo port install scala-27
$ scala-2.7 Welcome to Scala version 2.7.7.final (Java HotSpot(TM) 64-Bit Server VM, Java 1.6.0_22). Type in expressions to have them evaluated. Type :help for more information.
object HelloScala{ def main(args : Array[String]){ println(98L-1L) println("compiled hello") println("日本語はとおるのか") } }
$scalac-2.7 helloc.scala $scala-2.7 HelloScala 97 compiled hello 日本語はとおるのかPosted: December 20th, 2010 | Author: yamakk | Filed under: 技術 | Tags: scala | No Comments »
Leave a Reply