Created
September 2, 2016 14:48
-
-
Save sarveshseri/aadcef7007bd1018e34e67b77afe93b2 to your computer and use it in GitHub Desktop.
Medium :: Sbt :: The Simple Build Tool
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name := "SbtDemo1" | |
version := "1.0" | |
scalaVersion := "2.11.8" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
object Main { | |
def main(args: Array[String]): Unit = { | |
println("---------") | |
println("Hi,") | |
println("I am Sbt and I am simple. :D") | |
println("---------") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment