Skip to content

Latest commit

 

History

History
48 lines (34 loc) · 1.44 KB

README.md

File metadata and controls

48 lines (34 loc) · 1.44 KB

Calcurus: A Rust Calculator with GUI

Calcurus is a simple calculator written in Rust using the macroquad framework. It features a graphical user interface (GUI) for a more user-friendly experience.

Features

  • Basic arithmetic operations (addition, subtraction, multiplication, division) with integers and decimals
  • Graphical user interface (GUI)

Installation

  1. Prerequisites:

    • Ensure you have Rust installed. If not, follow the official installation guide for your platform: Rust Installation Guide.
  2. Clone the Repository:

    git clone https://github.com/your-username/calcurus.git
    cd calcurus
    
  3. Build the Project:

    cargo build --release
    
  4. Run the Executable:

    • After building successfully, you’ll find the release executable in the target/release directory. Run it from the project root:
    ./target/release/calcurus
    

Contributing:

  • Contributions are welcome! If you’d like to contribute to Calcurus, follow these steps:
  1. Fork the repository.

  2. Create a new branch:

       git checkout -b feature/my-feature.
  3. Make your changes and commit them:

       git commit -m "Add feature XYZ".
  4. Push to your forked repository:

       git push origin feature/my-feature.
  5. Open a pull request on GitHub.

License:

  • Calcurus is licensed under the Apache License 2.0. See the LICENSE file for details.