Create test.d

This commit is contained in:
LaurentTreguier 2016-01-07 13:21:25 +01:00
parent b7f32bba9a
commit ec81974d2d
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
class Test
{
private int member;
public auto func(string str)
{
import std.stdio;
writeln("Hello world !");
}
}