1. #include<stdio.h>
  2. //simple program to test highlighting
  3. //
  4. typedef long int ULINT;
  5. ULINT num = 0;
  6. enum State {ON, OFF} st = ON;
  7. int main() {
  8. /*
  9. * Print out hello world
  10. */
  11. int *p = 0;
  12. printf("Hello world\n"/*comment here; */ );
  13. return 0;
  14. }