when using a-sharpinclude reference, the reference is not smooth. 
 the following is the code: 
-sharpinclude "print.h"
int main(void){
  printHello();
  return 0;
}
-sharpinclude <stdio.h>
void printHello(void);
-sharpinclude "print.h"
    void printHello(){
      printf("Hello World \n");
}
  
 
is like this, how can you solve it?
