/* preprocessor directive - uses #include rather than import */ #include /* no public - also, main returns int */ int main(void) { /* printf, rather than System.out.println - have to explicitly include newline */ printf("Hello world.\n"); return 0; }