Skip to content
This repository was archived by the owner on Apr 25, 2023. It is now read-only.

Commit b3bb284

Browse files
committed
Removed missing semicolon exit code
1 parent e8a982d commit b3bb284

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Docs/exit_codes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Exit codes are the codes, the interpreter returns when exiting a file.
88
| 2 | Unspecified or unknown error. This might be caused by a bug, python or your operating system. Please report such bugs at [the issue tracker](https://github.com/I-Language-Development/I-language/issues). | Due to this being an extremely rare occurrence, it's hard to find any examples. |
99
| 3 | | |
1010
| 4 | Syntax error. Something not implemented was used or a keyword was spelled wrong. | There is a typo in the word `return` and you accidentally write `retrun`. |
11-
| 5 |Missing semicolon at the end of a line. | You wrote `output("Hello World!")` instead of `output("Hello World!");`. |
11+
| 5 |EMPTY | |
1212
| 6 | • Unclosed brackets or comment. | You forgot the closing bracket for an if statement. |
1313
| 7 | Type error. The type of a variable or the return type of a function is not identical to the type of the returned value. | You assign the type `int` to the variable, but give it a string value. |
1414
| 8 | Value error. The value is not valid. | You assign an empty value to a variable. For the most part this means, that you put a newline after a equals operator. |

0 commit comments

Comments
 (0)