xxxxxxxxxx
import std.stdio;
class Greeting {
void hello() {
writeln("hello");
}
void main() {
auto g = new Greeting();
g.hello();
g = null;