Skip to content

Latest commit

 

History

History
18 lines (10 loc) · 1.01 KB

how_to_contribute_for_how_to_use.md

File metadata and controls

18 lines (10 loc) · 1.01 KB

How to contribute?

  1. Fork the repository.

  2. Create a file for your language here with the name of YourProgrammingLanguageName.extension. (Python.py , C#.cs)

  3. Submit a pull request.

Inside of the file you created:

  1. Add 1- Import the txt file into your project. as a comment line. (If there are any necessary changes to be made to your language, please make them.)

  2. Provide all the necessary information step by step in the comment line to ensure that the .txt file works without any issues.

  3. In the last comment line, add <numberOfLastStep>- Assign to a string array using method below;

  4. Create a method called GetArrayOfWords that returns an array of strings from the target .txt file. (This method reads the target .txt file, splits it into an array, and returns the array.)

  5. Provide information in the comment lines for the method as needed.