Programming in Scala 2판

IntelliJ_JAVA+Scala+Install

BroBroBro 2015. 6. 28. 00:27

intellij + scala + java latest version install


I have faild to install above set before but I try again.


step1 : java

search google : java download

download : jdk1.8.0_45

info : Bellow Guide message is shown.

       " Click Next Steps to access tutorials, API documentation, developer guides, release notes

         and more to help you get statred with the JDK.


I save the like: http://docs.oracle.com/javase/8/docs/

         I wondered How describe "developer guides"


==Step1 was done.


step2 : intelliJ

search google : intelliJ

download : IntelliJ ideaIC-14.1.4

link : https://www.jetbrains.com/idea/

description : 

Community Edition FREE

I recommand that you install Featured plugins including scala.


step2-1 : scala-sdk 

You must download "scala-2.11.7.msi" before creating project with IntelliJ

Because you need java-sdk and scala-sdk in order to create a scala project.

link : http://www.scala-lang.org/download/

step2 and 2-1 were done.


scala's interactive mode is very useful for me. It's awesome.


I test below script with Interactive Mode

-----

    def testprint(param1:Int):Int= param1+2+3

    println("hello World!")

-----


and I test below script with 

-----

object helloWorld extends App{

  println("hellow World")

}

-----