# Hello World on Sunday July 25th, 2021

Hello world in C to check if the syntax highlighter is working.

#include <stdio.h>

void hello() {
  // A function to say hello just because.
  printf("Hello World!\n");
}

// Main function
int main(void) {
  hello();
  return 0;
}
Go back