Added some tests involving phobos.
This commit is contained in:
parent
5d96b5e3ca
commit
ed4e619228
6 changed files with 102 additions and 1 deletions
2
tests/app_6/CMakeLists.txt
Normal file
2
tests/app_6/CMakeLists.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
ADD_EXECUTABLE( app_6 app_6.d )
|
||||
ADD_TEST( app_6 app_6 )
|
9
tests/app_6/app_6.d
Normal file
9
tests/app_6/app_6.d
Normal file
|
@ -0,0 +1,9 @@
|
|||
/*
|
||||
Barebones app, but uses phobos
|
||||
*/
|
||||
import std.stdio;
|
||||
int main()
|
||||
{
|
||||
writeln( "Hello, world!" );
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue