xxxxxxxxxx
struct testStruct {
this( int value ) {
import std.stdio : writeln;
writeln("testStruct - ", value);
}
}
void test(int value) {
import std.stdio : writeln;
writeln( value );
}
void main() {
10.test(); // prints 10
20.testStruct();
}