aboutsummaryrefslogtreecommitdiff
path: root/test/empty-build-file/Main.scala
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2016-06-19 22:19:39 -0400
committerChristopher Vogt <oss.nsp@cvogt.org>2016-09-12 16:00:26 +0100
commitede10d4d0e139eb8f831b7241d29fb82d8996e73 (patch)
tree18e63106b4bd537c11f900f89d573cb9b73cb415 /test/empty-build-file/Main.scala
parentd7e7265c5509a389f7fbdba77bdc668d6d602a7c (diff)
downloadcbt-ede10d4d0e139eb8f831b7241d29fb82d8996e73.tar.gz
cbt-ede10d4d0e139eb8f831b7241d29fb82d8996e73.tar.bz2
cbt-ede10d4d0e139eb8f831b7241d29fb82d8996e73.zip
better error message for missing build.scala and missing class Build
Diffstat (limited to 'test/empty-build-file/Main.scala')
-rw-r--r--test/empty-build-file/Main.scala5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/empty-build-file/Main.scala b/test/empty-build-file/Main.scala
new file mode 100644
index 0000000..19d4beb
--- /dev/null
+++ b/test/empty-build-file/Main.scala
@@ -0,0 +1,5 @@
+object Main{
+ def main( args: Array[String] ): Unit = {
+ println( Console.GREEN ++ "Hello World" ++ Console.RESET )
+ }
+}