Filling in example sbt project

This commit is contained in:
Dan Buch 2012-05-13 23:26:55 -04:00
parent 3559798d38
commit 3075bdb938
4 changed files with 10 additions and 0 deletions

1
scala/sbt-guide/.env Normal file
View File

@ -0,0 +1 @@
PATH="$PWD/bin:$PATH"

View File

@ -1 +1,2 @@
/bin/ /bin/
target/

View File

@ -0,0 +1,5 @@
name := "hello"
version := "1.0"
scalaVersion := "2.9.1"

View File

@ -0,0 +1,3 @@
object Hi {
def main(args: Array[String]) = println("Hi")
}