Skip to content

Instantly share code, notes, and snippets.

@sarveshseri
Created September 2, 2016 14:48
Show Gist options
  • Save sarveshseri/aadcef7007bd1018e34e67b77afe93b2 to your computer and use it in GitHub Desktop.
Save sarveshseri/aadcef7007bd1018e34e67b77afe93b2 to your computer and use it in GitHub Desktop.
Medium :: Sbt :: The Simple Build Tool
name := "SbtDemo1"
version := "1.0"
scalaVersion := "2.11.8"
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