Very basic stuff working on linux 32-bit with dmd and phobos2.

This commit is contained in:
Steve King 2010-08-10 21:55:30 -07:00
commit 67f0225e42
152 changed files with 113 additions and 0 deletions

View file

@ -0,0 +1,2 @@
ADD_EXECUTABLE( app_2 app_2.d )
ADD_TEST( app_2 app_2 )

8
tests/app_2/app_2.d Normal file
View file

@ -0,0 +1,8 @@
// barebones app, depends on the standard library
import std.stdio;
int main()
{
writeln( "Hello World!" );
return 0;
}