[Assorted-commits] SF.net SVN: assorted: [483] simple-build/trunk/test
Brought to you by:
yangzhang
From: <yan...@us...> - 2008-02-24 06:34:37
|
Revision: 483 http://assorted.svn.sourceforge.net/assorted/?rev=483&view=rev Author: yangzhang Date: 2008-02-23 22:34:44 -0800 (Sat, 23 Feb 2008) Log Message: ----------- updated tests Modified Paths: -------------- simple-build/trunk/test/cpp/build simple-build/trunk/test/scala/MyApp.scala Added Paths: ----------- simple-build/trunk/test/cpp/myapp2.cc Modified: simple-build/trunk/test/cpp/build =================================================================== --- simple-build/trunk/test/cpp/build 2008-02-24 06:34:03 UTC (rev 482) +++ simple-build/trunk/test/cpp/build 2008-02-24 06:34:44 UTC (rev 483) @@ -1,2 +1,5 @@ myapp: srcs: [myapp.cc] + +myapp2: + srcs: [myapp2.cc] Added: simple-build/trunk/test/cpp/myapp2.cc =================================================================== --- simple-build/trunk/test/cpp/myapp2.cc (rev 0) +++ simple-build/trunk/test/cpp/myapp2.cc 2008-02-24 06:34:44 UTC (rev 483) @@ -0,0 +1,10 @@ +#include <iostream> + +using namespace std; + +int +main() +{ + cout << "hello, world!" << endl; + return 0; +} Modified: simple-build/trunk/test/scala/MyApp.scala =================================================================== --- simple-build/trunk/test/scala/MyApp.scala 2008-02-24 06:34:03 UTC (rev 482) +++ simple-build/trunk/test/scala/MyApp.scala 2008-02-24 06:34:44 UTC (rev 483) @@ -1,5 +1,6 @@ +object MyApp2 { + def main(args: Array[String]) = println("goodbye, world!") +} object MyApp { - def main(args: Array[String]) { - println("hello, world!") - } + def main(args: Array[String]) = println("hello, world!") } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |