So i was playing around with the D inline assembly trying to make 
it say hello world on my windows setup...
void main(){
     asm
     {
         myhello:
         db "HELLO, WORLD$";
         mov EAX , myhello;
         mov AH, 0x09;
         int 0x21;
     }
}
I figure this should do it. but i'm running into problems. 
Anybody know why?