31 lines
1.2 KiB
Markdown
Raw Permalink Normal View History

2020-03-30 03:26:05 +13:00
## Contributing
2020-03-30 03:26:05 +13:00
### Adding a language
2021-11-03 01:01:54 +13:00
#### Conflict of interest
If you are associated with a programming language (for example: through endorsement or being an internal contributor) you will not be able to add it unless you can prove its notability by citing multiple external sources that were not created with a conflict of interest.
2020-03-30 03:26:05 +13:00
#### Naming
The name of the file will be displayed as-is in the readme. It should be named according to the language it was written in. The name shouldn't be abbreviated too far (use `JavaScript.js` instead of `JS.js`) and it shouldn't be abbreviated too little (use `CSS.css` instead of `Cascading Style Sheets.css`). Additionally, use spaces instead of hyphens or underscores (use `Objective C.m` instead of `Objective-C.m`).
2020-03-30 03:26:05 +13:00
If a file name contains a special character that Windows is not able to display, substitute it with the following:
|Original|Substitute|
|:-:|:-:|
|/||
|\\ ||
|:|˸|
|\*||
|?||
|"||
|<|﹤|
|>|﹥|
|\||❘|
2020-03-30 03:26:05 +13:00
#### Contents
The code in the file should be the simplest and most straightforward way to print/display/show `Hello World` exactly once in the language used. User input should not be requested and a newline should only be printed when necessary.
2020-03-30 03:26:05 +13:00