Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 741 Bytes

ISSUE_TEMPLATE.md

File metadata and controls

39 lines (25 loc) · 741 Bytes

Issue Report

(Please provide a clear and concise description of the issue.)

Expected Behavior

(Write out the expected behavior.)

Actual Behavior

(Write out what actually happened.)

Steps to Reproduce the Issue

(Write out in suffient detail how to reproduce the issue.)

Proposed Resolution

(Write out any suggestons how to solve the issue.)

If relevant, please mention in which version or for which git commit you found the issue.

Please remember to put ``` lines before and after any commands plus output and code, like this:

```
$ echo output output output
output output output
```

```
#include <stdio.h>

int main() {
    int foo = 1;
    printf("%d\n", foo);
}
```