Prerequisites
...
Code Block | ||
---|---|---|
| ||
#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:
...
...
Code Block | ||
---|---|---|
| ||
#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:
...