Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 1.9 KB

README.md

File metadata and controls

43 lines (28 loc) · 1.9 KB

This is like a coding game !

Welcome to the Command Line Calculator project! This project aims to provide a simple command-line calculator implemented in various programming languages. Whether you're a beginner or an experienced developer, feel free to contribute your own version of the calculator in the language of your choice.

How to Contribute

1. Fork the Repository

First, you'll need to fork this repository to your own GitHub account. Click on the "Fork" button at the top right corner of this page to create a copy of the repository in your account.

2. Clone Your Fork

Once you've forked the repository, clone it to your local machine using the following command:

git clone https://github.com/YourUsername/command-line-calc.git

Replace YourUsername with your GitHub username.

  1. Add Your Calculator Implementation Now it's time to add your own version of the calculator in the programming language of your choice. You can create a new file (If not already created) with the appropriate file extension (e.g., .py for Python, .java for Java, etc.) and implement the calculator logic.

  2. Commit Your Changes Once you've added your calculator implementation, commit your changes to your local repository with the following commands:

git add .
git commit -m "Add [Your Language] calculator implementation"
  1. Push Your Changes Push your changes to your forked repository on GitHub with the following command:
git push origin main
  1. Submit a Pull Request Finally, navigate to your forked repository on GitHub and click on the "New pull request" button. Compare your changes with the original repository and submit the pull request.

Thank You for Contributing! Thank you for contributing to the Command Line Calculator project. Your contributions help create a diverse collection of calculator implementations and provide valuable learning opportunities for others. Happy coding!