Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 764 Bytes

CONTRIBUTING.md

File metadata and controls

34 lines (25 loc) · 764 Bytes

How to contribute to Gryphon Racing

Primary Resources

These are a quick list of resources on how to be a more effective programmer

Formatting Code on Discord

Use ``` (triple backticks) to start a code block, add your language identifier afterward to get code coloring, finish the message with another triple backticks to finish.

```c
#include <stdio.h>

int main() {
    printf("Hello world!");
}
```

displays as:

#include <stdio.h>

int main() {
    printf("Hello world!");
}

Final notes

Please read through our coding standards and our style guide.