Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Prerequisites

...

Code Block
languagecpp
#include "log.
h"

int main(void) {
  LOG_DEBUG("Hello World!\n");

  return 0;
}

...

With your code workring, we want to make sure your code matches our Coding Standards. We use two tools for that:

...