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
View File
@@ -0,0 +1 @@
PATH="$PWD/bin:$PATH"
+1
View File
@@ -1 +1,2 @@
/bin/ /bin/
target/
+5
View File
@@ -0,0 +1,5 @@
name := "hello"
version := "1.0"
scalaVersion := "2.9.1"
@@ -0,0 +1,3 @@
object Hi {
def main(args: Array[String]) = println("Hi")
}